Commit 79a31096 by Sébastien Eustace

Remove zipfile36 dependency

parent 90a5bb66
...@@ -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
......
...@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment