-
Notifications
You must be signed in to change notification settings - Fork 213
testing dev python updates #1510
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
base: dev
Are you sure you want to change the base?
Conversation
👋 Hey, looks like you've updated some demos! 🐘 Don't forget to update the Please hide this comment once the field(s) are updated. Thanks! |
Your preview is ready 🎉!You can view your changes here |
@@ -4,7 +4,7 @@ version = "0.0.0" | |||
description = "Introductions to key concepts in quantum machine learning, as well as tutorials and implementations from cutting-edge QML research." | |||
readme = "README.md" | |||
license = "Apache-2.0" | |||
requires-python = ">=3.10.0" | |||
requires-python = ">=3.10.0,<3.13.0" |
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.
Wouldn't this be >=3.11?
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.
No unfortunately mitiq
still yells at us when we do.
Here is a snippet of the error:
The current project's supported Python range (>=3.11.0) is not compatible with some of the required packages Python requirement:
- mitiq requires Python <3.13,>=3.10, so it will not be installable for Python >=3.13
Because qml depends on mitiq (0.43.0) which requires Python <3.13,>=3.10, version solving failed.
* Check your dependencies Python requirement: The Python requirement can be specified via the `python` or `markers` properties
For mitiq, a possible solution would be to set the `python` property to ">=3.11.0,<3.13"
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.
Maybe add a #TODO
(+ story to update once mitiq is updated)?
@@ -169,7 +169,7 @@ jobs: | |||
python-version: '3.11' | |||
|
|||
- name: Install dependencies | |||
run: pip install . && poetry config warnings.export false | |||
run: pip install . && poetry config warnings.export false |
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.
run: pip install . && poetry config warnings.export false | |
run: pip install . && poetry config warnings.export false |
@@ -1,3 +1,3 @@ | |||
flamingpy | |||
# flamingpy |
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.
# flamingpy | |
## TODO: | |
## FlamingPy is disabled as it does not support py3.11, we will need to renable this when upgrade is made | |
# flamingpy |
@@ -1,5 +1,5 @@ | |||
dimod | |||
docplex | |||
dwave-ocean-sdk==7.1.0 | |||
openqaoa-core | |||
# openqaoa-core |
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.
# openqaoa-core | |
## TODO: | |
## openqaoa does not support py3.11, reenable when support is available | |
# openqaoa-core |
WIP