commit: c6385b705e178162d79f415056fdcb7da7681bbb
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat May 31 10:22:08 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat May 31 10:22:08 2025 +0000
URL:
https://gitweb.gentoo.org/proj/pkgcore/snakeoil.git/commit/?id=c6385b70
update min python version, test on py3.14
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
.github/workflows/test.yml | 6 +++---
README.rst | 2 +-
pyproject.toml | 4 ++--
tox.ini | 2 +-
4 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 8f1f818..52ccacf 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -13,14 +13,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
- python-version: ['3.10', '3.11', '3.12', 'pypy3.10']
+ python-version: ['3.11', '3.12', '3.13', 'pypy3.11']
experimental: [false]
include:
- os: ubuntu-latest
- python-version: '3.13-dev'
+ python-version: '3.14-dev'
experimental: true
- os: macos-latest
- python-version: '3.11'
+ python-version: '3.12'
experimental: false
fail-fast: false
diff --git a/README.rst b/README.rst
index 6cc958e..734ed27 100644
--- a/README.rst
+++ b/README.rst
@@ -36,7 +36,7 @@ Using tox for all supported python versions::
Using tox for a specific python version::
- tox -e py310
+ tox -e py311
Contact
=======
diff --git a/pyproject.toml b/pyproject.toml
index 4e95139..84b18d8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"
name = "snakeoil"
description = "misc common functionality and useful optimizations"
readme = "README.rst"
-requires-python = "~=3.10"
+requires-python = "~=3.11"
# alphabetical by surname
authors = [
{name = "Tim Harder", email = "[email protected]"},
@@ -19,9 +19,9 @@ maintainers = [
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
- "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
+ "Programming Language :: Python :: 3.13",
]
dynamic = ["version"]
diff --git a/tox.ini b/tox.ini
index cd763aa..537babd 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py310, py311, py312, pypy3
+envlist = py311, py312, py313, py314, pypy3
skip_missing_interpreters = True
isolated_build = True