]> git.phdru.name Git - mimedecode.git/commitdiff
Tests, CI: Run tests with Python 3.11 3.1.0.post2
authorOleg Broytman <phd@phdru.name>
Wed, 26 Oct 2022 17:10:43 +0000 (20:10 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 7 Jul 2023 20:20:42 +0000 (23:20 +0300)
Docs: Year 2022.

.github/workflows/run-tests.yaml
ANNOUNCE
ChangeLog
docs/mimedecode.rst
mimedecode/__version__.py
setup.py
tox.ini

index 5854e6a26a65a65e4817a41d3fbb0dfac4e79b6a..3addbae9024a38e056078da27a8a4d8a7eb48847 100644 (file)
@@ -7,7 +7,7 @@ jobs:
 
     strategy:
       matrix:
-        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"]
 
     name: Python ${{ matrix.python-version }}
     runs-on: ubuntu-latest
index 6cdf6f0ed6a51200ba915d0c50db1a46202a19fd..43b7ca9d11d83dc6a80750379c86e1746f31bef0 100644 (file)
--- a/ANNOUNCE
+++ b/ANNOUNCE
@@ -30,6 +30,10 @@ everything else. This is how it could be done:
    mimedecode -t application/pdf -t application/postscript -t text/plain -b text/html -B 'image/*' -i '*/*'
 
 
+Version 3.1.0.post2
+
+   Python 3.11.
+
 Version 3.1.0.post1 (2021-09-24)
 
    GitHub Actions.
@@ -65,7 +69,7 @@ AUTHOR
    Oleg Broytman <phd@phdru.name>
 
 COPYRIGHT
-   Copyright (C) 2001-2021 PhiloSoft Design.
+   Copyright (C) 2001-2022 PhiloSoft Design.
 
 LICENSE
    GPL
index cf213fab15b3fb923919a097349b43db1015db9b..e12e80e1597cadbd5ed46a944c55d1f3fea984b3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Version 3.1.0.post2 (2022-10-26)
+
+   Python 3.11.
+
 Version 3.1.0.post1 (2021-09-24)
 
    GitHub Actions.
index 1c7b18d91c33a9d075924a884fa467b1a1086bec..4f36158d6b21397ca33987f5573645a92c1dcf0c 100644 (file)
@@ -334,7 +334,7 @@ Oleg Broytman <phd@phdru.name>
 COPYRIGHT
 ---------
 
-Copyright (C) 2001-2021 PhiloSoft Design.
+Copyright (C) 2001-2022 PhiloSoft Design.
 
 LICENSE
 -------
index 499e18cb6e4e7162b3d7bbabe0ec94359f013086..34d3dca82b75e802075cdc452505fe80a33efe3c 100644 (file)
@@ -1,4 +1,4 @@
-__version__ = "3.1.0.post1"
+__version__ = "3.1.0.post2"
 __author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 2001-2021 PhiloSoft Design"
+__copyright__ = "Copyright (C) 2001-2022 PhiloSoft Design"
 __license__ = "GNU GPL"
index 9b8e2dd6b7d6e5361376289f43ecbd6253ab216f..cd2eac819f0f574174e59fc7e46541991475ba4e 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ if sys.version_info[:2] == (2, 7):
     execfile(versionpath, mimedecode_version)  # noqa: F821 'execfile' Py3
 
 elif sys.version_info >= (3, 4):
-    exec(open(versionpath, 'rU').read(), mimedecode_version)
+    exec(open(versionpath, 'r').read(), mimedecode_version)
 
 else:
     raise ImportError("mimedecode requires Python 2.7 or 3.4+")
@@ -57,6 +57,7 @@ setup(
         'Programming Language :: Python :: 3.8',
         'Programming Language :: Python :: 3.9',
         'Programming Language :: Python :: 3.10',
+        'Programming Language :: Python :: 3.11',
     ],
     packages=['mimedecode'],
     entry_points={
diff --git a/tox.ini b/tox.ini
index 387d57495d97b80e51086e8339524df9613ba6cb..8673549f856a30e00abd408974b7ebe7e30c4071 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
 [tox]
 minversion = 2.0
-envlist = py27,py3{4,5,6,7,8,9,10},pypy
+envlist = py27,py3{4,5,6,7,8,9,10,11},pypy
 
 [testenv]
 deps =