Pipfile 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. freesurfer-surface = {editable = true, path = "./.."}
  7. pandas = "*"
  8. notebook = "*"
  9. # python3.7 compatibility
  10. ipython = "<8"
  11. numpy = "<1.23"
  12. # python<=3.8 compatibility
  13. # > File "[...]/python3.8/site-packages/jsonschema/_utils.py", line 12, in <module>
  14. # > import importlib_resources as resources # type: ignore
  15. # > ModuleNotFoundError: No module named 'importlib_resources'
  16. importlib-resources = {markers = "python_version <= '3.8'"}
  17. # > File "[...]/python3.8/site-packages/importlib_resources/_compat.py", line 11, in <module>
  18. # > from zipp import Path as ZipPath # type: ignore
  19. # > ModuleNotFoundError: No module named 'zipp'
  20. zipp = {markers = "python_version <= '3.8'"}
  21. # python3.10 compatibility
  22. # > File "[...]/lib/python3.10/site-packages/mypy/main.py", line 11, in <module>
  23. # > from typing_extensions import Final, NoReturn
  24. # > ModuleNotFoundError: No module named 'typing_extensions'
  25. typing-extensions = {markers = ""}
  26. [dev-packages]
  27. [requires]
  28. python_version = "3"