]> git.phdru.name Git - mimedecode.git/commitdiff
Python 3.9
authorOleg Broytman <phd@phdru.name>
Tue, 5 Jan 2021 12:59:05 +0000 (15:59 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 5 Jan 2021 13:49:37 +0000 (16:49 +0300)
.travis.yml
ANNOUNCE
ChangeLog
setup.py
tox.ini

index bcb4d075522255c7789820fc0634fd3e5abc0983..54d630dbd7be111fb18baf7f1b25b635690f2eec 100644 (file)
@@ -23,6 +23,8 @@ matrix:
     env: TOXENV=py37
   - python: "3.8"
     env: TOXENV=py38
+  - python: "3.9"
+    env: TOXENV=py39
   - python: "pypy"
     env: TOXENV=pypy
 
index e38e966c67f184f7ee59055f2e4b119b6c50fb43..1b7292a28645886915127b6a345d4918468d505f 100644 (file)
--- a/ANNOUNCE
+++ b/ANNOUNCE
@@ -30,14 +30,14 @@ 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 (2020-??-??)
+Version 3.1.0 (2021-??-??)
 
    Convert mimedecode.docbook to reST. Generate html/man/text
    using Sphinx.
 
    Replaced outdated and insecure `mktemp` with `NamedTemporaryFile`.
 
-   Python 3.8.
+   Python 3.8, 3.9.
 
 
 WHERE TO GET
index 7e17688894b22c376afd4af05f0c2767add2092d..ff738eb2e82fde80656a91e55cff7968b40f6ba2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,11 +1,11 @@
-Version 3.1.0 (2020-??-??)
+Version 3.1.0 (2021-??-??)
 
    Convert mimedecode.docbook to reST. Generate html/man/text
    using Sphinx.
 
    Replaced outdated and insecure `mktemp` with `NamedTemporaryFile`.
 
-   Python 3.8.
+   Python 3.8, 3.9.
 
 Version 3.0.0 (2019-02-01)
 
index f5cac72414a2aa21798ef4784123c43e9aa2041f..5fec573977aec6d6884a49df2f24515dbd816c95 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -55,6 +55,7 @@ setup(
         'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: 3.8',
+        'Programming Language :: Python :: 3.9',
     ],
     packages=['mimedecode'],
     entry_points={
diff --git a/tox.ini b/tox.ini
index 8c2e8454d26181e85754473055426854756a41da..7d7449e17a6d2a670ecb63a2cff6e2c47ed06f59 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
 [tox]
 minversion = 2.0
-envlist = py27,py3{4,5,6,7,8},pypy
+envlist = py27,py3{4,5,6,7,8,9},pypy
 
 [testenv]
 basepython =
@@ -10,6 +10,7 @@ basepython =
     py36: {env:TOXPYTHON:python3.6}
     py37: {env:TOXPYTHON:python3.7}
     py38: {env:TOXPYTHON:python3.8}
+    py39: {env:TOXPYTHON:python3.9}
     pypy: {env:TOXPYTHON:pypy}
 deps =
     -rdevscripts/requirements/requirements_tests.txt