From ade4ae3d4ea4e2d11329db8b676ccf2cbe26bdeb Mon Sep 17 00:00:00 2001 From: Alec Edgington Date: Thu, 12 Dec 2024 13:30:00 +0000 Subject: [PATCH] Add support for Python 3.13. --- .github/workflows/test.yml | 2 +- README.md | 4 ++-- pyproject.toml | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1d0da96..943ac79 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: os: ['ubuntu-latest', 'macos-latest', 'macos-13', 'windows-latest'] - pyver: ['3.10', '3.11', '3.12'] + pyver: ['3.10', '3.11', '3.12', '3.13'] runs-on: ${{ matrix.os }} steps: diff --git a/README.md b/README.md index 2ea22ca..92c9e28 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ circuits using the ## Installation -Installation requires Python 3.10, 3.11 or 3.12. Linux, MacOS and Windows are -all supported. +Installation requires Python 3.10, 3.11, 3.12 or 3.13. Linux, MacOS and Windows +are all supported. ### From pypi diff --git a/pyproject.toml b/pyproject.toml index fba6530..6dea2ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,6 +13,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Operating System :: POSIX :: Linux", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows"