From 9bb84d38d2f57669cf2b831a192534d81dc31315 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Thu, 24 Jul 2025 15:35:21 +0300 Subject: [PATCH] Tested with Python 3.14 --- .github/workflows/run-tests.yaml | 2 +- docs/news.rst | 6 +++--- ppu/__version__.py | 2 +- setup.py | 1 + tox.ini | 8 ++++---- 5 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 778093a..545c7ce 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -10,7 +10,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "=3.9[build=*_pypy]"] + python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "=3.9[build=*_pypy]"] exclude: - os: windows-latest python-version: "2.7" diff --git a/docs/news.rst b/docs/news.rst index 99e98d6..2cc9076 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -1,10 +1,10 @@ News ==== -Version 0.8.1 (in development) ------------------------------- +Version 0.8.1 (2025-08-24) +-------------------------- -* Python 3.10, 3.11, 3.12, 3.13. +* Python 3.10, 3.11, 3.12, 3.13, 3.14. * CI(GHActions): Install all Python and PyPy versions from ``conda-forge``. diff --git a/ppu/__version__.py b/ppu/__version__.py index 32a90a3..ef72cc0 100644 --- a/ppu/__version__.py +++ b/ppu/__version__.py @@ -1 +1 @@ -__version__ = '0.8.0' +__version__ = '0.8.1' diff --git a/setup.py b/setup.py index 54a0779..7558c3b 100755 --- a/setup.py +++ b/setup.py @@ -57,6 +57,7 @@ setup( 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14', ], packages=['ppu'], scripts=[ diff --git a/tox.ini b/tox.ini index db160ec..fd4d156 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.15 -envlist = py{27,34,35,36,37,38,39,310,311,312,313,py,py3},py{27,37,312}-flake8 +envlist = py{27,34,35,36,37,38,39,310,311,312,313,314,py,py3},py{27,37,312}-flake8 # Base test environment settings [testenv] @@ -11,15 +11,15 @@ commands = deps = -rdevscripts/requirements/requirements_tests.txt -[testenv:py{27,34,35,36,37,38,39,310,311,312,313,py,py3}] +[testenv:py{27,34,35,36,37,38,39,310,311,312,313,314,py,py3}] commands = {[testenv]commands} {envpython} -m pytest -[testenv:py{27,34,35,36,37,38,39,310,311,312,313}-flake8] +[testenv:py{27,34,35,36,37,38,39,310,311,312,313,314}-flake8] deps = flake8 - pytest < 7.0 + pytest commands = {[testenv]commands} flake8 -- 2.39.5