Pipfile 746 B

123456789101112131415161718192021222324252627
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. freesurfer-stats = {editable = true, path = "."}
  7. # v1.0.0 dropped support for python<3.6.1
  8. # https://github.com/pandas-dev/pandas/commit/18efcb27361478daa3118079ecb166c733691ecb#diff-2eeaed663bd0d25b7e608891384b7298R814
  9. pandas = "<1"
  10. [dev-packages]
  11. black = "==19.10b0"
  12. isort = "*"
  13. # >=2.3.0 due to false+ assignment-from-no-return
  14. # https://github.com/PyCQA/pylint/issues/2694
  15. pylint = ">=2.3.0,<3"
  16. pylint-import-requirements = "<3"
  17. pytest = "<5"
  18. # >=2 for --cov-fail-under
  19. pytest-cov = "<3,>=2"
  20. # v2.0.0 dropped python<3.6 support
  21. # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
  22. zipp = "<2"
  23. [requires]
  24. python_version = "3"