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

index aae7413f97d3d4b35eb7fa73a8abe1aaa937fc29..baafe4923d2c7badbb4e12f790335f62c8e9ca94 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"]
+        python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
         include:
         - os: ubuntu-latest
           os-name: Linux
index d4ec87980bb77cfde6a028c0fe7dd599735ac0a7..a5573488dbb15d2caeafb799999511245c24fbd6 100644 (file)
@@ -1,6 +1,11 @@
 News
 ====
 
+Version 0.3.1 (in development)
+------------------------------
+
+* Python 3.11.
+
 Version 0.3.0 (2021-09-24)
 --------------------------
 
index 2647b09db45b873b53c1f715448a69dcd0eb9b62..911b3ac88faa75ffd6223081c11cc6105f6277e7 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ if sys.version_info[:2] == (2, 7):
     execfile(versionpath, sqlconvert_version)  # noqa: F821 'execfile' Py3
 
 elif sys.version_info >= (3, 4):
-    exec(open(versionpath, 'rU').read(), sqlconvert_version)
+    exec(open(versionpath, 'r').read(), sqlconvert_version)
 
 else:
     raise ImportError("sqlconvert requires Python 2.7 or 3.4+")
@@ -20,7 +20,7 @@ setup(
     name='sqlconvert',
     version=sqlconvert_version['__version__'],
     description='Broytman sqlconvert',
-    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=['sqlconvert'],
     scripts=['scripts/mysql2sql'],
diff --git a/tox.ini b/tox.ini
index e9b04fc218fc55df9590c703b6f6620281fcc5a2..6eaedf2eed34482ca1b10ea773b9c5db5ba1d238 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}{,-sqlite},py{27,39}-flake8
+envlist = py27,py3{4,5,6,7,8,9,10,11}{,-sqlite},py{27,36,311}-flake8
 
 # Base test environment settings
 [testenv]
@@ -18,7 +18,7 @@ whitelist_externals =
     createdb
     dropdb
 
-[testenv:{py27,py34,py35,py36,py37,py38,py39,py310}]
+[testenv:py{27,34,35,36,37,38,39,310,311}]
 commands =
     {[testenv]commands}
     {envpython} -m pytest
@@ -26,14 +26,14 @@ commands =
     cmp.py -i tests/mysql2sql/test.out test.out
     rm.py -f test.out
 
-[testenv:{py27,py34,py35,py36,py37,py38,py39,py310}-sqlite]
+[testenv:py{27,34,35,36,37,38,39,310,311}-sqlite]
 commands =
     {[testenv]commands}
     -rm.py -f /tmp/test.sqdb
     {envpython} -m pytest -D sqlite:///tmp/test.sqdb
     rm.py -f /tmp/test.sqdb
 
-[testenv:{py27,py34,py35,py36,py37,py38,py39,py310}-sqlite-w32]
+[testenv:py{27,34,35,36,37,38,39,310,311}-sqlite-w32]
 platform = win32
 commands =
     {[testenv]commands}
@@ -41,7 +41,7 @@ commands =
     pytest -D sqlite:/{env:TEMP}/test.sqdb?debug=1
     rm.py -f {env:TEMP}/test.sqdb
 
-[testenv:{py27,py34,py35,py36,py37,py38,py39,py310}-postgres{,-w32}]
+[testenv:py{27,34,35,36,37,38,39,310,311}-postgres{,-w32}]
 commands =
     {[testenv]commands}
     -dropdb --username=runner test
@@ -50,7 +50,7 @@ commands =
     dropdb --username=runner test
 
 # flake8
-[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