Pipfile 897 B

123456789101112131415161718192021222324252627282930
  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 requires python>=3.6
  12. # https://github.com/psf/black/commit/e74117f172e29e8a980e2c9de929ad50d3769150#diff-2eeaed663bd0d25b7e608891384b7298R51
  13. #black = "==19.10b0"
  14. isort = "*"
  15. # >=2.3.0 due to false+ assignment-from-no-return
  16. # https://github.com/PyCQA/pylint/issues/2694
  17. pylint = ">=2.3.0,<3"
  18. pylint-import-requirements = "<3"
  19. pytest = "<5"
  20. # >=2 for --cov-fail-under
  21. pytest-cov = "<3,>=2"
  22. # v2.0.0 dropped python<3.6 support
  23. # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
  24. zipp = "<2"
  25. [requires]
  26. python_version = "3"