You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an inconsistency in the pyproject.toml file. Line 3 states the project requires python>=3.7, which is also reflected in the PyPi, but the actual tool dependencies on line 17 states the project requires python^3.10. This means the package can't be installed if you have a python version less than 3.10:
➜ pyrevm git:(master) pyenv global 3.9
➜ pyrevm git:(master) poetry env use 3.9
The specified Python version (3.9.10) is not supported by the project (^3.10).
Please choose a compatible version or loosen the python constraint specified in the pyproject.toml file.
➜ pyrevm git:(master)
I therefore propose the following pyproject.toml file:
There is an inconsistency in the
pyproject.toml
file. Line 3 states the project requirespython>=3.7
, which is also reflected in the PyPi, but the actual tool dependencies on line 17 states the project requirespython^3.10
. This means the package can't be installed if you have a python version less than 3.10:➜ pyrevm git:(master) pyenv global 3.9 ➜ pyrevm git:(master) poetry env use 3.9 The specified Python version (3.9.10) is not supported by the project (^3.10). Please choose a compatible version or loosen the python constraint specified in the pyproject.toml file. ➜ pyrevm git:(master)
I therefore propose the following
pyproject.toml
file:The text was updated successfully, but these errors were encountered: