Pipfile 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. freesurfer-volume-reader = {editable = true, path = "./.."}
  7. pandas = "*"
  8. matplotlib = "*"
  9. seaborn = "*"
  10. notebook = "*"
  11. # nbconvert v6.0.2 made `;` suffix on last line ineffective
  12. nbconvert = "!=6.0.2"
  13. # python3.7 compatibility
  14. ipython = "<8"
  15. numpy = "<1.22"
  16. # python<=3.8 compatibility
  17. # > File "[...]/python3.8/site-packages/jsonschema/_utils.py", line 12, in <module>
  18. # > import importlib_resources as resources # type: ignore
  19. # > ModuleNotFoundError: No module named 'importlib_resources'
  20. importlib-resources = {markers = "python_version <= '3.8'"}
  21. scipy = "<1.8"
  22. # > File "[...]/python3.8/site-packages/importlib_resources/_compat.py", line 11, in <module>
  23. # > from zipp import Path as ZipPath # type: ignore
  24. # > ModuleNotFoundError: No module named 'zipp'
  25. zipp = {markers = "python_version <= '3.8'"}
  26. # python3.10 compatibility
  27. # > File "[...]/lib/python3.10/site-packages/mypy/main.py", line 11, in <module>
  28. # > from typing_extensions import Final, NoReturn
  29. # > ModuleNotFoundError: No module named 'typing_extensions'
  30. typing-extensions = {markers = ""}
  31. # > File "[...]/python3.9/site-packages/nbconvert/exporters/html.py", line 14, in <module>
  32. # > from jinja2 import contextfilter
  33. # https://github.com/jupyter/nbconvert/issues/1742
  34. jinja2 = "<3.1"
  35. [requires]
  36. python_version = "3"