From 4bb051cb66ef0655d9f9b52b4719fd2c82d79187 Mon Sep 17 00:00:00 2001 From: luiz826 Date: Sun, 30 Mar 2025 11:03:32 -0300 Subject: [PATCH] feat: add python 3.12 and 3.13 --- .github/workflows/tox.yml | 2 +- setup.py | 2 ++ tox.ini | 4 +++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index bdfee59..2d09f9e 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index a8de56a..fc04ae3 100644 --- a/setup.py +++ b/setup.py @@ -108,6 +108,8 @@ def find_meta(meta): "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", "License :: OSI Approved :: Apache Software License" ], test_suite='tests', diff --git a/tox.ini b/tox.ini index 81d2f2b..0ac3f22 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,12 @@ [tox] -envlist = py39, py310, py311 +envlist = py39, py310, py311, py312, py313 skipsdist = True usedevelop = True [gh-actions] python = + 3.13: py313 + 3.12: py312 3.11: py311 3.10: py310 3.9: py39