-
Notifications
You must be signed in to change notification settings - Fork 21
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
Update ci configuration to use supported python version #51
Conversation
The repo hasn't been updated in some time as the tests were working as-is. But in the meantime the CI configuration has bitrotted slightly. The tests are all built around using python 3.8 which is now unsupported both by qiskit and cPython. This commit updates the configuration to fix this and unblock CI.
from qiskit_neko.version import __version__ | ||
from qiskit_neko.version import __version__ as __version__ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was the only ruff error after moving off of pylint (which was causing the install issues). It said either do this or add __all__
and put __version__
in it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's a pretty stupid lint rule, but ok haha
releasenotes/config.yaml
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess it wasn't doing anything, but did you mean to delete it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, as part of removing unnecessary requirements I removed it along with the reno dev requirement.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if it wasn't doing anything I am in favor of deleting it
The repo hasn't been updated in some time as the tests were working as-is. But in the meantime the CI configuration has bitrotted slightly. The tests are all built around using python 3.8 which is now unsupported both by qiskit and cPython. This commit updates the configuration to fix this and unblock CI.