Pipfile 515 B

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