Pipfile 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. free-disk = {editable = true, path = "."}
  7. [dev-packages]
  8. # black requires python>=3.6
  9. # https://github.com/psf/black/commit/e74117f172e29e8a980e2c9de929ad50d3769150#diff-2eeaed663bd0d25b7e608891384b7298R51
  10. black = {version = "==19.10b0", markers = "python_version >= '3.6'"}
  11. mypy = {version = "*", markers = "python_version >= '3.5'"}
  12. # v2.4.0 dropped python3.4 support
  13. # https://github.com/PyCQA/pylint/commit/927db96bbd343a61428faa0249fdeec58cfb3ebe
  14. pylint = ">=2.3.0,<2.4.0"
  15. # v2.0.1 restored python3.4 support
  16. pylint-import-requirements = ">=2.0.1"
  17. # v5.0.0 dropped python3.4. support
  18. # https://github.com/pytest-dev/pytest/commit/4d49ba65297102110ae8aeecdb3b82b23a231fba
  19. pytest = "<5"
  20. # v2.9.0 dropped python3.4 support
  21. # https://github.com/pytest-dev/pytest-cov/commit/be80b6e1e3e2378e63a20f0001c9cbf8038bd659#diff-2eeaed663bd0d25b7e608891384b7298R127
  22. pytest-cov = "<2.9.0"
  23. # version constraints for python3.4 support:
  24. # https://github.com/PyCQA/astroid/commit/4a4b7faf9de8437f2b96bc7285802fd1230b7a9a
  25. astroid = "<2.3.0"
  26. coverage = "<5"
  27. # https://gitlab.com/python-devs/importlib_metadata/commit/cf58e1a6515adc4ad6f84cce5e89cd5ef830b317
  28. importlib-metadata = "<1.2.0"
  29. # dependency of astroid
  30. # https://github.com/ionelmc/python-lazy-object-proxy/commit/2bcf97a14092cf2a6eea3650bc1b3e7c61972ffa#diff-60f61ab7a8d1910d86d9fda2261620314edcae5894d5aaa236b821c7256badd7L118
  31. lazy-object-proxy = "<1.5.1"
  32. # https://github.com/more-itertools/more-itertools/commit/e8a4f926585d4052c6c6b4cc52389e94ffb64ae8
  33. more-itertools = "<8"
  34. # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
  35. zipp = "<2"
  36. # remove black's dependencies for python<3.6
  37. # https://github.com/pallets/click/commit/35929957d81ab18a7bc0d75e850449f3f1068107#diff-2eeaed663bd0d25b7e608891384b7298R27
  38. appdirs = {version = "*", markers="python_version >= '3.6'"}
  39. click = {version = "*", markers="python_version >= '3.6'"}
  40. pathspec = {version = "*", markers="python_version >= '3.6'"}
  41. regex = {version = "*", markers="python_version >= '3.6'"}
  42. toml = {version = "*", markers="python_version >= '3.6'"}
  43. # remove mypy's dependencies for python<3.5
  44. mypy-extensions = {version = "*", markers="python_version >= '3.5'"}
  45. typing-extensions = {version = "*", markers="python_version >= '3.5'"}
  46. # workaround https://github.com/pytest-dev/pytest/issues/3953
  47. pathlib2 = {version = "*", markers="python_version < '3.6'"}
  48. [requires]
  49. python_version = "3"
  50. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile