-
Notifications
You must be signed in to change notification settings - Fork 212
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -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 commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
pandas |
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -1,3 +1,3 @@ | ||||||||||
flamingpy | ||||||||||
# flamingpy | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
networkx | ||||||||||
plotly |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. No unfortunately 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 commentThe reason will be displayed to describe this comment to others. Learn more. Maybe add a |
||
authors = [ | ||
{ name = "PennyLaneAI", email = "[email protected]" } | ||
] | ||
|
@@ -79,7 +79,7 @@ seaborn = "0.13.2" | |
kahypar = "1.1.7" | ||
openfermionpyscf = "0.5" | ||
covalent = "0.227.0rc0" | ||
openqaoa-core = "0.2.5" | ||
|
||
dwave-ocean-sdk = "7.0.0" | ||
pyzx = "0.9.0" | ||
plotly = ">=4.5.0" | ||
|
@@ -121,7 +121,6 @@ torchvision = [ | |
|
||
# The following packages are platform locked to not install on MacOS as the installation breaks | ||
scikit-learn = { version = "1.3.0", markers = "platform_machine == 'x86_64'" } | ||
flamingpy = { version = ">=0.10.1b1", markers = "platform_machine == 'x86_64'" } | ||
qulacs = { version = "0.6.1", markers = "platform_machine == 'x86_64'" } | ||
|
||
[tool.poetry.group.metadata-validation] | ||
|
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.