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
News
====
+Version 0.8.1 (in development)
+------------------------------
+
+* Python 3.11.
+
Version 0.8.0 (2021-09-24)
--------------------------
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+")
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',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
+ 'Programming Language :: Python :: 3.11',
],
packages=['ppu'],
scripts=[
[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]
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