]> git.phdru.name Git - ppu.git/commitdiff
Tests, CI: Run tests with Python 3.11
authorOleg Broytman <phd@phdru.name>
Wed, 26 Oct 2022 17:14:03 +0000 (20:14 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 27 Oct 2022 15:02:55 +0000 (18:02 +0300)
.github/workflows/run-tests.yaml
docs/news.rst
setup.py
tox.ini

index 88529f7831164e333003bd6f030128b83c34b114..9a882ca4bc61659a000baf5ac6c795914df6fb99 100644 (file)
@@ -8,7 +8,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", "pypy-2.7"]
+        python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy-2.7"]
         include:
         - os: ubuntu-latest
           os-name: Linux
index 34c1adc7917984b3905894c1ad6f53b073f7aa8a..c943cc4fce59ad1731d74efc1bb05e0f58eb7d3f 100644 (file)
@@ -1,6 +1,11 @@
 News
 ====
 
+Version 0.8.1 (in development)
+------------------------------
+
+* Python 3.11.
+
 Version 0.8.0 (2021-09-24)
 --------------------------
 
index e9a67a80e52c71c38d802b4fe4df858849e74a80..792ad0e902b6b2c1595c66e02900392f9152c40c 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ if sys.version_info[:2] == (2, 7):
     execfile(versionpath, ppu_version)  # noqa: F821 'execfile' Py3
 
 elif sys.version_info >= (3, 4):
-    exec(open(versionpath, 'rU').read(), ppu_version)
+    exec(open(versionpath, 'r').read(), ppu_version)
 
 else:
     raise ImportError("ppu requires Python 2.7 or 3.4+")
@@ -20,7 +20,7 @@ setup(
     name='ppu',
     version=ppu_version['__version__'],
     description='Broytman Portable Python Utilities',
-    long_description=open('README.rst', 'rU').read(),
+    long_description=open('README.rst', 'r').read(),
     long_description_content_type="text/x-rst",
     author='Oleg Broytman',
     author_email='phd@phdru.name',
@@ -54,6 +54,7 @@ setup(
         'Programming Language :: Python :: 3.8',
         'Programming Language :: Python :: 3.9',
         'Programming Language :: Python :: 3.10',
+        'Programming Language :: Python :: 3.11',
     ],
     packages=['ppu'],
     scripts=[
diff --git a/tox.ini b/tox.ini
index 8525f74876f176826dd53c568c7b4316a74e9830..2609ac923e3e010efd13b6827615389070e8aeb3 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
 [tox]
 minversion = 3.15
-envlist = py27,py3{4,5,6,7,8,9,10},pypy,py{27,39}-flake8
+envlist = py27,py3{4,5,6,7,8,9,10,11},pypy,py{27,36,311}-flake8
 
 # Base test environment settings
 [testenv]
@@ -11,12 +11,12 @@ commands =
 deps =
     -rdevscripts/requirements/requirements_tests.txt
 
-[testenv:{py27,py34,py35,py36,py37,py38,py39,py310,pypy}]
+[testenv:py{27,34,35,36,37,38,39,310,311,py}]
 commands =
     {[testenv]commands}
     {envpython} -m pytest
 
-[testenv:{py27,py34,py35,py36,py37,py38,py39,py310}-flake8]
+[testenv:py{27,34,35,36,37,38,39,310,311}-flake8]
 deps =
     flake8
     pytest < 7.0