Docs: Year 2022.
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
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.
Oleg Broytman <phd@phdru.name>
COPYRIGHT
- Copyright (C) 2001-2021 PhiloSoft Design.
+ Copyright (C) 2001-2022 PhiloSoft Design.
LICENSE
GPL
+Version 3.1.0.post2 (2022-10-26)
+
+ Python 3.11.
+
Version 3.1.0.post1 (2021-09-24)
GitHub Actions.
COPYRIGHT
---------
-Copyright (C) 2001-2021 PhiloSoft Design.
+Copyright (C) 2001-2022 PhiloSoft Design.
LICENSE
-------
-__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"
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+")
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
+ 'Programming Language :: Python :: 3.11',
],
packages=['mimedecode'],
entry_points={
[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 =