Skip to content

Commit

Permalink
Remove zipfile36 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed May 1, 2018
1 parent 90a5bb6 commit 79a3109
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions poetry/masonry/builders/wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@
import tempfile
import shutil
import stat

try:
import zipfile36 as zipfile
except ImportError:
import zipfile
import zipfile

from base64 import urlsafe_b64encode
from io import StringIO
Expand Down
6 changes: 1 addition & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ jsonschema = "^2.6"
pyrsistent = "^0.14.2"
pyparsing = "^2.2"
cachecontrol = { version = "^0.12.4", extras = ["filecache"] }

# zipfile36 is needed for Python 3.4 and 3.5
zipfile36 = { version = "^0.1", python = ">=3.4 <3.6" }
pkginfo = "^1.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" }
Expand All @@ -44,8 +42,6 @@ typing = { version = "^3.6", python = "~2.7 || ~3.4" }
pathlib2 = { version = "^2.3", python = "~2.7" }
virtualenv = { version = "^15.2", python = "~2.7" }

pkginfo = "^1.4"

[tool.poetry.dev-dependencies]
pytest = "^3.4"
pytest-cov = "^2.5"
Expand Down

0 comments on commit 79a3109

Please sign in to comment.