From e8dadb5ac43083883cc1bc72c76e7205a275fe59 Mon Sep 17 00:00:00 2001 From: "Ankur Sinha (Ankur Sinha Gmail)" Date: Wed, 23 Oct 2024 17:01:35 +0100 Subject: [PATCH] feat: support py3.8 -> py3.13 --- .github/workflows/ci.yml | 4 ++-- setup.cfg | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5b2722..0a77696 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: @@ -37,7 +37,7 @@ jobs: - name: Run tests run: | ./test.sh - + - name: Lint with flake8 run: | pip install flake8 diff --git a/setup.cfg b/setup.cfg index efa860d..5e916e1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,11 +14,12 @@ classifiers= Intended Audience :: Science/Research Natural Language :: English Operating System :: OS Independent - Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 Topic :: Scientific/Engineering [options]