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
79a31096
Unverified
Commit
79a31096
authored
May 01, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove zipfile36 dependency
parent
90a5bb66
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
10 deletions
+2
-10
poetry/masonry/builders/wheel.py
+1
-5
pyproject.toml
+1
-5
No files found.
poetry/masonry/builders/wheel.py
View file @
79a31096
...
@@ -7,11 +7,7 @@ import re
...
@@ -7,11 +7,7 @@ import re
import
tempfile
import
tempfile
import
shutil
import
shutil
import
stat
import
stat
import
zipfile
try
:
import
zipfile36
as
zipfile
except
ImportError
:
import
zipfile
from
base64
import
urlsafe_b64encode
from
base64
import
urlsafe_b64encode
from
io
import
StringIO
from
io
import
StringIO
...
...
pyproject.toml
View file @
79a31096
...
@@ -33,9 +33,7 @@ jsonschema = "^2.6"
...
@@ -33,9 +33,7 @@ jsonschema = "^2.6"
pyrsistent
=
"^0.14.2"
pyrsistent
=
"^0.14.2"
pyparsing
=
"^2.2"
pyparsing
=
"^2.2"
cachecontrol
=
{
version
=
"^0.12.4"
,
extras
=
["filecache"]
}
cachecontrol
=
{
version
=
"^0.12.4"
,
extras
=
["filecache"]
}
pkginfo
=
"^1.4"
# zipfile36 is needed for Python 3.4 and 3.5
zipfile36
=
{
version
=
"^0.1"
,
python
=
">=3.4 <3.6"
}
# The typing module is not in the stdlib in Python 2.7 and 3.4
# The typing module is not in the stdlib in Python 2.7 and 3.4
typing
=
{
version
=
"^3.6"
,
python
=
"~2.7 || ~3.4"
}
typing
=
{
version
=
"^3.6"
,
python
=
"~2.7 || ~3.4"
}
...
@@ -44,8 +42,6 @@ typing = { version = "^3.6", python = "~2.7 || ~3.4" }
...
@@ -44,8 +42,6 @@ typing = { version = "^3.6", python = "~2.7 || ~3.4" }
pathlib2
=
{
version
=
"^2.3"
,
python
=
"~2.7"
}
pathlib2
=
{
version
=
"^2.3"
,
python
=
"~2.7"
}
virtualenv
=
{
version
=
"^15.2"
,
python
=
"~2.7"
}
virtualenv
=
{
version
=
"^15.2"
,
python
=
"~2.7"
}
pkginfo
=
"^1.4"
[tool.poetry.dev-dependencies]
[tool.poetry.dev-dependencies]
pytest
=
"^3.4"
pytest
=
"^3.4"
pytest-cov
=
"^2.5"
pytest-cov
=
"^2.5"
...
...
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