-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update python support to 3.10, 3.11 and 3.12 (#324)
* Update setup.py * Update README.md * Update mypy.ini * Update Quantinuum_circuit_submissions.py * Update intro.txt * Update check-examples.yml * Update build_and_test.yml * Update Quantinuum_circuit_submissions.ipynb * Update setup.py * Update changelog.rst * Update build_and_test.yml * Update build_and_test.yml * Update intro.txt * Update build_and_test.yml * Update build_and_test.yml
- Loading branch information
Showing
9 changed files
with
29 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ | |
version=metadata["__extension_version__"], | ||
author="TKET development team", | ||
author_email="[email protected]", | ||
python_requires=">=3.9", | ||
python_requires=">=3.10", | ||
project_urls={ | ||
"Documentation": "https://tket.quantinuum.com/extensions/pytket-quantinuum/index.html", | ||
"Source": "https://github.com/CQCL/pytket-quantinuum", | ||
|
@@ -43,7 +43,7 @@ | |
packages=find_namespace_packages(include=["pytket.*"]), | ||
include_package_data=True, | ||
install_requires=[ | ||
"pytket ~= 1.23", | ||
"pytket ~= 1.24", | ||
"requests >= 2.2", | ||
"types-requests", | ||
"websockets >= 7.0", | ||
|
@@ -54,9 +54,9 @@ | |
extras_require={"pecos": ["pytket-pecos ~= 0.1.8"]}, | ||
classifiers=[ | ||
"Environment :: Console", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: POSIX :: Linux", | ||
|