From 376f0612f81feea8b0e8b5c74774334c76695bd9 Mon Sep 17 00:00:00 2001 From: Guillaume Schurck Date: Thu, 19 Dec 2024 16:55:21 +0100 Subject: [PATCH] feat: support Python 3.13 --- .github/workflows/main.yml | 6 +++--- pyproject.toml | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3cc9750..8eeca1a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] os: ["ubuntu-latest"] steps: - uses: actions/checkout@v3 @@ -27,7 +27,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] os: ["macOS-latest"] steps: - uses: actions/checkout@v3 @@ -44,7 +44,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] os: ["windows-latest"] steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index 430dfb3..7ae7623 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,10 +25,11 @@ classifiers=[ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering :: Physics", ] urls = {Homepage = "https://github.com/Alice-Bob-SW/qiskit-alice-bob-provider", "Alice & Bob" = "https://alice-bob.com/"} -requires-python = ">=3.9, <3.13" +requires-python = ">=3.9, <3.14" dependencies = [ "ipython", "ipywidgets",