From 4f75decaf07738c433175b40368e776a9e3a3c64 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 26 Oct 2022 20:14:03 +0300 Subject: [PATCH] Tests, CI: Run tests with Python 3.11 --- .github/workflows/run-tests.yaml | 2 +- docs/news.rst | 5 +++++ setup.py | 5 +++-- tox.ini | 6 +++--- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 88529f7..9a882ca 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -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 diff --git a/docs/news.rst b/docs/news.rst index 34c1adc..c943cc4 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -1,6 +1,11 @@ News ==== +Version 0.8.1 (in development) +------------------------------ + +* Python 3.11. + Version 0.8.0 (2021-09-24) -------------------------- diff --git a/setup.py b/setup.py index e9a67a8..792ad0e 100755 --- 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 8525f74..2609ac9 100644 --- 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 -- 2.39.2