]> git.phdru.name Git - ppu.git/commitdiff
Tested with Python 3.14
authorOleg Broytman <phd@phdru.name>
Thu, 24 Jul 2025 12:35:21 +0000 (15:35 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 14 Aug 2025 19:21:49 +0000 (22:21 +0300)
.github/workflows/run-tests.yaml
docs/news.rst
ppu/__version__.py
setup.py
tox.ini

index 778093a5a05eed69f56ffc9e4af91b2981a3acfa..545c7ceba2a90d084b004e29bc2bb1e02fc217cb 100644 (file)
@@ -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"
index 99e98d67f07b543a2b73d5b5d4081be6a34a4d89..2cc90767d1deab99a48c58c4ab83d7867b176128 100644 (file)
@@ -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``.
 
index 32a90a3b944427b7122686816d6f979b779242cb..ef72cc0f1a07c4f666229adea7f6f42629d9e3aa 100644 (file)
@@ -1 +1 @@
-__version__ = '0.8.0'
+__version__ = '0.8.1'
index 54a077907cdb0b78d6bb40f4860765d5aabc0efe..7558c3b15492913111a5c648e086315beda49c47 100755 (executable)
--- 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 db160ec9d51503ec888982fb14571bd860f6764e..fd4d156ef24bfc35b92f46b22dc39c1c6e96d536 100644 (file)
--- 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