Pipfile 362 B

1234567891011121314151617181920
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. [dev-packages]
  7. isort = "*"
  8. # >=2.3.0 due to false+ assignment-from-no-return
  9. # https://github.com/PyCQA/pylint/issues/2694
  10. pylint = ">=2.3.0,<3"
  11. pytest = "<5"
  12. # >=2 for --cov-fail-under
  13. pytest-cov = "<3,>=2"
  14. pytest-timeout = "<2"
  15. yapf = "*"
  16. [requires]
  17. python_version = "3"