Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inconsistent Python Versions Supported #9

Closed
0xprofessooor opened this issue Oct 30, 2023 · 0 comments · Fixed by #10
Closed

Inconsistent Python Versions Supported #9

0xprofessooor opened this issue Oct 30, 2023 · 0 comments · Fixed by #10

Comments

@0xprofessooor
Copy link
Contributor

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:

[tool.poetry.dependencies]
python = ">=3.7"
maturin = "^0.13.5"
pytest = "^7.1.3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant