From ae0c77d15aa54926b605704fcd925f38035186dd Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 11 Nov 2024 14:19:03 -0300 Subject: [PATCH] Add support for Python 3.11+ --- .github/workflows/main.yml | 2 +- setup.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b58382e..865f85f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - PYTHON_VERSION: ["3.10"] + PYTHON_VERSION: ["3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/setup.py b/setup.py index 9dbcfdc..059e657 100644 --- a/setup.py +++ b/setup.py @@ -33,6 +33,9 @@ "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering :: Visualization", "Topic :: Software Development :: User Interfaces", ],