Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
e95272f7
Unverified
Commit
e95272f7
authored
Oct 12, 2019
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update build scripts
parent
d4599f2c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
Makefile
+2
-2
make-linux-release.sh
+1
-0
sonnet
+1
-0
No files found.
Makefile
View file @
e95272f7
...
@@ -47,8 +47,8 @@ wheel:
...
@@ -47,8 +47,8 @@ wheel:
@
poetry build
-v
@
poetry build
-v
linux_release
:
linux_release
:
docker pull quay.io/pypa/manylinux
1
_x86_64
docker pull quay.io/pypa/manylinux
2010
_x86_64
docker run
--rm
-
v
`
pwd
`
:/io quay.io/pypa/manylinux1
_x86_64 /io/make-linux-release.sh
docker run
--rm
-
t
-i
-v
`
pwd
`
:/io quay.io/pypa/manylinux2010
_x86_64 /io/make-linux-release.sh
# run tests against all supported python versions
# run tests against all supported python versions
tox
:
tox
:
...
...
make-linux-release.sh
View file @
e95272f7
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
PYTHON_VERSIONS
=
"cp27-cp27m cp34-cp34m cp35-cp35m cp36-cp36m cp37-cp37m cp38-cp38"
PYTHON_VERSIONS
=
"cp27-cp27m cp34-cp34m cp35-cp35m cp36-cp36m cp37-cp37m cp38-cp38"
cd
/io
cd
/io
/opt/python/cp37-cp37m/bin/pip install pip
-U
/opt/python/cp37-cp37m/bin/pip install poetry
-U
/opt/python/cp37-cp37m/bin/pip install poetry
-U
/opt/python/cp37-cp37m/bin/poetry config settings.virtualenvs.create
false
/opt/python/cp37-cp37m/bin/poetry config settings.virtualenvs.create
false
/opt/python/cp37-cp37m/bin/poetry install
--no-dev
/opt/python/cp37-cp37m/bin/poetry install
--no-dev
...
...
sonnet
View file @
e95272f7
...
@@ -218,6 +218,7 @@ class MakeReleaseCommand(Command):
...
@@ -218,6 +218,7 @@ class MakeReleaseCommand(Command):
subprocess
.
check_output
(
subprocess
.
check_output
(
[
python
,
"-V"
],
stderr
=
subprocess
.
STDOUT
,
shell
=
WINDOWS
[
python
,
"-V"
],
stderr
=
subprocess
.
STDOUT
,
shell
=
WINDOWS
)
)
subprocess
.
check_output
([
python
,
"-m"
,
"pip"
,
"install"
,
"pip"
,
"-U"
])
except
subprocess
.
CalledProcessError
:
except
subprocess
.
CalledProcessError
:
raise
RuntimeError
(
"Python {} is not available"
.
format
(
version
))
raise
RuntimeError
(
"Python {} is not available"
.
format
(
version
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment