Skip to content

Commit

Permalink
Add explicit support for python 3.11 (#554)
Browse files Browse the repository at this point in the history
Signed-off-by: Paul S. Schweigert <paul@paulschweigert.com>

Fixes #484
  • Loading branch information
psschwei authored May 17, 2023
1 parent 365a42e commit 8eaa1f6
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 5 deletions.
18 changes: 18 additions & 0 deletions .github/actions/build-and-push-images/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@ runs:
tags: qiskit/quantum-serverless-ray-node:${{inputs.tag}}-py310
build-args:
IMAGE_PY_VERSION=py310
- name: Build and push node image [3.11]
uses: docker/build-push-action@v3
with:
context: .
file: ./infrastructure/docker/Dockerfile-ray-qiskit
push: true
tags: qiskit/quantum-serverless-ray-node:${{inputs.tag}}-py311
build-args:
IMAGE_PY_VERSION=py311
- name: Build and push jupyter [3.8]
uses: docker/build-push-action@v3
with:
Expand Down Expand Up @@ -61,6 +70,15 @@ runs:
tags: qiskit/quantum-serverless-notebook:${{inputs.tag}}-py310
build-args:
IMAGE_PY_VERSION=3.10
- name: Build and push jupyter [3.11]
uses: docker/build-push-action@v3
with:
context: .
file: ./infrastructure/docker/Dockerfile-notebook
push: true
tags: qiskit/quantum-serverless-notebook:${{inputs.tag}}-py311
build-args:
IMAGE_PY_VERSION=3.11
- name: Build and push repository server
uses: docker/build-push-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Stability](https://img.shields.io/badge/stability-alpha-f4d03f.svg)](https://github.com/Qiskit-Extensions/quantum-serverless/releases)
[![License](https://img.shields.io/github/license/qiskit-community/quantum-prototype-template?label=License)](https://github.com/qiskit-community/quantum-prototype-template/blob/main/LICENSE.txt)
[![Code style: Black](https://img.shields.io/badge/Code%20style-Black-000.svg)](https://github.com/psf/black)
[![Python](https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10-informational)](https://www.python.org/)
[![Python](https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-informational)](https://www.python.org/)
[![Qiskit](https://img.shields.io/badge/Qiskit-%E2%89%A5%200.39.0-6133BD)](https://github.com/Qiskit/qiskit)

# Quantum serverless
Expand Down
2 changes: 1 addition & 1 deletion client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Client verify process](https://github.com/Qiskit-Extensions/quantum-serverless/actions/workflows/client-verify.yaml/badge.svg)](https://github.com/Qiskit-Extensions/quantum-serverless/actions/workflows/client-verify.yaml)
[![License](https://img.shields.io/github/license/qiskit-community/quantum-prototype-template?label=License)](https://github.com/qiskit-community/quantum-prototype-template/blob/main/LICENSE.txt)
[![Code style: Black](https://img.shields.io/badge/Code%20style-Black-000.svg)](https://github.com/psf/black)
[![Python](https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10-informational)](https://www.python.org/)
[![Python](https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-informational)](https://www.python.org/)
[![Qiskit](https://img.shields.io/badge/Qiskit-%E2%89%A5%200.39.0-6133BD)](https://github.com/Qiskit/qiskit)

# Quantum Serverless client
Expand Down
1 change: 1 addition & 0 deletions client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Physics",
],
)
2 changes: 1 addition & 1 deletion client/tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 2.1
envlist = py37, py38, py39, py310, lint, coverage
envlist = py37, py38, py39, py310, py311, lint, coverage
# CI: skip-next-line
skipsdist = true
# CI: skip-next-line
Expand Down
2 changes: 1 addition & 1 deletion gateway/tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 2.1
envlist = py38, py39, py310, lint, coverage
envlist = py38, py39, py310, py311, lint, coverage
# CI: skip-next-line
skipsdist = true
# CI: skip-next-line
Expand Down
2 changes: 1 addition & 1 deletion repository/tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 2.1
envlist = py38, py39, py310, lint, coverage
envlist = py38, py39, py310, py311, lint, coverage
# CI: skip-next-line
skipsdist = true
# CI: skip-next-line
Expand Down

0 comments on commit 8eaa1f6

Please sign in to comment.