Skip to content

Commit 0a6c08c

Browse files
Bump pypa/cibuildwheel from 2.14 to 2.15 (#358)
2 parents 6e7ce69 + 8528545 commit 0a6c08c

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
name: Set Architecture to arm64 if necessary
4848
run: echo "CIBW_ARCHS_MACOS=arm64" >> $GITHUB_ENV
4949
- name: Build wheels
50-
uses: pypa/cibuildwheel@v2.14
50+
uses: pypa/cibuildwheel@v2.15
5151
env:
5252
CIBW_BEFORE_ALL_LINUX: /opt/python/cp39-cp39/bin/pip install z3-solver==${{ env.Z3_VERSION }}
5353
- uses: actions/upload-artifact@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you have any questions, feel free to contact us via [quantum.cda@xcit.tum.de]
3535
</a>
3636
</p>
3737

38-
QMAP is available via [PyPI](https://pypi.org/project/mqt.qmap/) for Linux, macOS, and Windows and supports Python 3.8 to 3.11.
38+
QMAP is available via [PyPI](https://pypi.org/project/mqt.qmap/) for Linux, macOS, and Windows and supports Python 3.8 to 3.12.
3939

4040
```console
4141
(venv) $ pip install mqt.qmap

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
nox.options.sessions = ["lint", "tests"]
1414

15-
PYTHON_ALL_VERSIONS = ["3.8", "3.9", "3.10", "3.11"]
15+
PYTHON_ALL_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"]
1616

1717
if os.environ.get("CI", None):
1818
nox.options.error_on_missing_interpreters = True

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ classifiers=[
2727
"Programming Language :: Python :: 3.9",
2828
"Programming Language :: Python :: 3.10",
2929
"Programming Language :: Python :: 3.11",
30+
"Programming Language :: Python :: 3.12",
3031
"Programming Language :: C++",
3132
"License :: OSI Approved :: MIT License",
3233
"Operating System :: Microsoft :: Windows",
@@ -82,7 +83,7 @@ include = ["mqt.*"]
8283
build = "cp3*"
8384
archs = "auto64"
8485
skip = "*-musllinux*"
85-
test-skip = "*-macosx_arm64"
86+
test-skip = "*-macosx_arm64 cp312-*" # Qiskit Terra does not support Python 3.12 yet
8687
test-command = "python -c \"from mqt import qmap\""
8788
environment = { DEPLOY = "ON" }
8889
build-frontend = "build"

0 commit comments

Comments
 (0)