Pipfile 652 B

1234567891011121314151617181920212223
  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. # v2.3.0 dropped python3.4 support
  9. # https://github.com/PyCQA/astroid/commit/4a4b7faf9de8437f2b96bc7285802fd1230b7a9a
  10. astroid = "<2.3.0"
  11. # v8.0.0 dropped python3.4 support
  12. more-itertools = "<8"
  13. # v2.4.0 dropped python3.4 support
  14. # https://github.com/PyCQA/pylint/commit/927db96bbd343a61428faa0249fdeec58cfb3ebe
  15. pylint = ">=2.3.0,<2.4.0"
  16. # v5.0.0 dropped python3.4. support
  17. # https://github.com/pytest-dev/pytest/commit/4d49ba65297102110ae8aeecdb3b82b23a231fba
  18. pytest = "<5"
  19. [requires]
  20. python_version = "3"