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
02d78ba8
Unverified
Commit
02d78ba8
authored
Oct 05, 2019
by
Sébastien Eustace
Committed by
GitHub
Oct 05, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for Python 3.8 (#1437)
parent
c7c20d8c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
7 deletions
+9
-7
make-linux-release.sh
+3
-2
sonnet
+3
-2
tests/masonry/builders/test_complete.py
+2
-2
tox.ini
+1
-1
No files found.
make-linux-release.sh
View file @
02d78ba8
#!/bin/bash
PYTHON_VERSIONS
=
"cp27-cp27m cp34-cp34m cp35-cp35m cp36-cp36m cp37-cp37m"
PYTHON_VERSIONS
=
"cp27-cp27m cp34-cp34m cp35-cp35m cp36-cp36m cp37-cp37m
cp38-cp38m
"
cd
/io
/opt/python/cp37-cp37m/bin/pip install poetry
-U
...
...
@@ -10,5 +10,6 @@ cd /io
-P
"3.4:/opt/python/cp34-cp34m/bin/python"
\
-P
"3.5:/opt/python/cp35-cp35m/bin/python"
\
-P
"3.6:/opt/python/cp36-cp36m/bin/python"
\
-P
"3.7:/opt/python/cp37-cp37m/bin/python"
-P
"3.7:/opt/python/cp37-cp37m/bin/python"
\
-P
"3.8:/opt/python/cp38-cp38m/bin/python"
cd
-
sonnet
View file @
02d78ba8
...
...
@@ -28,6 +28,7 @@ class MakeReleaseCommand(Command):
"3.5"
:
"python3.5"
,
"3.6"
:
"python3.6"
,
"3.7"
:
"python3.7"
,
"3.8"
:
"python3.8"
,
}
def
handle
(
self
):
...
...
@@ -46,7 +47,7 @@ class MakeReleaseCommand(Command):
self
.
check_system
(
pythons
)
from
poetry
import
__version__
from
poetry
.
poetry
import
Poet
ry
from
poetry
.
factory
import
Facto
ry
from
poetry
.
puzzle
import
Solver
from
poetry
.
repositories
.
pool
import
Pool
from
poetry
.
repositories
.
repository
import
Repository
...
...
@@ -59,7 +60,7 @@ class MakeReleaseCommand(Command):
from
poetry
.
utils
.
helpers
import
temporary_directory
from
poetry
.
vcs
import
get_vcs
project
=
Poetry
.
create
(
Path
.
cwd
())
project
=
Factory
().
create_poetry
(
Path
.
cwd
())
package
=
project
.
package
del
package
.
dev_requires
[:]
...
...
tests/masonry/builders/test_complete.py
View file @
02d78ba8
...
...
@@ -79,7 +79,7 @@ def test_wheel_c_extension():
Wheel-Version: 1.0
Generator: poetry {}
Root-Is-Purelib: false
Tag: cp[23]
\\
d-cp[23]
\\
dmu?-.+
Tag: cp[23]
\\
d-cp[23]
\\
dm
?
u?-.+
$"""
.
format
(
__version__
),
...
...
@@ -136,7 +136,7 @@ def test_wheel_c_extension_src_layout():
Wheel-Version: 1.0
Generator: poetry {}
Root-Is-Purelib: false
Tag: cp[23]
\\
d-cp[23]
\\
dmu?-.+
Tag: cp[23]
\\
d-cp[23]
\\
dm
?
u?-.+
$"""
.
format
(
__version__
),
...
...
tox.ini
View file @
02d78ba8
[tox]
skipsdist
=
True
envlist
=
py27, py34, py35, py36, py37
envlist
=
py27, py34, py35, py36, py37
, py38
[testenv]
whitelist_externals
=
poetry
...
...
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