Pipfile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. # >=2.3.0 due to false+ assignment-from-no-return
  18. # https://github.com/PyCQA/pylint/issues/2694
  19. pylint = ">=2.3.0,<3"
  20. pylint-import-requirements = "<3"
  21. pytest = "<5"
  22. # >=2 for --cov-fail-under
  23. pytest-cov = "<3,>=2"
  24. # python3.5 compatibility
  25. isort = "<5"
  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"
  31. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile