Browse Source

pipfile: group dev packages

Fabian Peter Hammerle 3 years ago
parent
commit
e6c808e926
1 changed files with 12 additions and 14 deletions
  1. 12 14
      Pipfile

+ 12 - 14
Pipfile

@@ -7,22 +7,9 @@ name = "pypi"
 free-disk = {editable = true, path = "."}
 
 [dev-packages]
-# v2.3.0 dropped python3.4 support
-# https://github.com/PyCQA/astroid/commit/4a4b7faf9de8437f2b96bc7285802fd1230b7a9a
-astroid = "<2.3.0"
 # black requires python>=3.6
 # https://github.com/psf/black/commit/e74117f172e29e8a980e2c9de929ad50d3769150#diff-2eeaed663bd0d25b7e608891384b7298R51
 black = {version = "==19.10b0", markers="python_version >= '3.6'"}
-# v5.0 dropped python3.4 support
-coverage = "<5"
-# v1.2.0 dropped python3.4. support
-# https://gitlab.com/python-devs/importlib_metadata/commit/cf58e1a6515adc4ad6f84cce5e89cd5ef830b317
-importlib-metadata = "<1.2.0"
-# v8.0.0 dropped python3.4 support
-# https://github.com/more-itertools/more-itertools/commit/e8a4f926585d4052c6c6b4cc52389e94ffb64ae8
-more-itertools = "<8"
-# workaround https://github.com/pytest-dev/pytest/issues/3953
-pathlib2 = {version = "*", markers="python_version < '3.6'"}
 # v2.4.0 dropped python3.4 support
 # https://github.com/PyCQA/pylint/commit/927db96bbd343a61428faa0249fdeec58cfb3ebe
 pylint = ">=2.3.0,<2.4.0"
@@ -34,10 +21,21 @@ pytest = "<5"
 # v2.9.0 dropped python3.4 support
 # https://github.com/pytest-dev/pytest-cov/commit/be80b6e1e3e2378e63a20f0001c9cbf8038bd659#diff-2eeaed663bd0d25b7e608891384b7298R127
 pytest-cov = "<2.9.0"
-# v2.0.0 dropped python<3.6 support
+
+# version constraints for python3.4 support:
+# https://github.com/PyCQA/astroid/commit/4a4b7faf9de8437f2b96bc7285802fd1230b7a9a
+astroid = "<2.3.0"
+coverage = "<5"
+# https://gitlab.com/python-devs/importlib_metadata/commit/cf58e1a6515adc4ad6f84cce5e89cd5ef830b317
+importlib-metadata = "<1.2.0"
+# https://github.com/more-itertools/more-itertools/commit/e8a4f926585d4052c6c6b4cc52389e94ffb64ae8
+more-itertools = "<8"
 # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
 zipp = "<2"
 
+# workaround https://github.com/pytest-dev/pytest/issues/3953
+pathlib2 = {version = "*", markers="python_version < '3.6'"}
+
 [requires]
 python_version = "3"