From 50353bc09068fe4a3042a574f1e815c9c516e0b0 Mon Sep 17 00:00:00 2001 From: Hagen Wierstorf Date: Wed, 8 May 2024 12:50:06 +0200 Subject: [PATCH] Add support for Python 3.11 --- .github/workflows/test.yml | 3 +++ pyproject.toml | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 147e5ad..5de25df 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,6 +18,9 @@ jobs: - os: ubuntu-latest python-version: '3.9' tasks: tests + - os: ubuntu-latest + python-version: '3.11' + tasks: tests steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 85f76c7..d037871 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,7 @@ classifiers = [ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Topic :: Scientific/Engineering', ] requires-python = '>=3.9'