We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The python version is currently specified as python = ">3.9,<=3.14". This precludes patch versions of 3.14, which should be allowed.
python = ">3.9,<=3.14"
I suggest modifying the python specification to python = ">3.9,<4.0" or ^3.9.
python = ">3.9,<4.0"
^3.9
Finally pyquil could be updated to minimum version 3.10, as the scientific python ecosystem has deprecated 3.9 according to NEP-29.
The text was updated successfully, but these errors were encountered:
Fixed in pyQuil 4.14.0
Sorry, something went wrong.
Just noting in passing that this issue could probably be closed, as it appears to have been taken care of.
No branches or pull requests
The python version is currently specified as
python = ">3.9,<=3.14"
. This precludes patch versions of 3.14, which should be allowed.I suggest modifying the python specification to
python = ">3.9,<4.0"
or^3.9
.Finally pyquil could be updated to minimum version 3.10, as the scientific python ecosystem has deprecated 3.9 according to NEP-29.
The text was updated successfully, but these errors were encountered: