Pipfile 1.1 KB

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