12345678910111213141516171819202122232425262728293031323334 |
- [[source]]
- url = "https://pypi.org/simple"
- verify_ssl = true
- name = "pypi"
- [packages]
- freesurfer-surface = {editable = true, path = "./.."}
- pandas = "*"
- notebook = "*"
- # python3.7 compatibility
- ipython = "<8"
- numpy = "<1.22"
- # python<=3.8 compatibility
- # > File "[...]/python3.8/site-packages/jsonschema/_utils.py", line 12, in <module>
- # > import importlib_resources as resources # type: ignore
- # > ModuleNotFoundError: No module named 'importlib_resources'
- importlib-resources = {markers = "python_version <= '3.8'"}
- # > File "[...]/python3.8/site-packages/importlib_resources/_compat.py", line 11, in <module>
- # > from zipp import Path as ZipPath # type: ignore
- # > ModuleNotFoundError: No module named 'zipp'
- zipp = {markers = "python_version <= '3.8'"}
- # python3.10 compatibility
- # > File "[...]/lib/python3.10/site-packages/mypy/main.py", line 11, in <module>
- # > from typing_extensions import Final, NoReturn
- # > ModuleNotFoundError: No module named 'typing_extensions'
- typing-extensions = {markers = ""}
- [dev-packages]
- [requires]
- python_version = "3"
|