From f66c51ad1cbe157b0ba67841ce0f244090b37706 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Tue, 5 Jan 2021 15:59:05 +0300 Subject: [PATCH] Python 3.9 --- .travis.yml | 2 ++ ANNOUNCE | 4 ++-- ChangeLog | 4 ++-- setup.py | 1 + tox.ini | 3 ++- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index bcb4d07..54d630d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/ANNOUNCE b/ANNOUNCE index e38e966..1b7292a 100644 --- 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 diff --git a/ChangeLog b/ChangeLog index 7e17688..ff738eb 100644 --- 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) diff --git a/setup.py b/setup.py index f5cac72..5fec573 100755 --- 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 8c2e845..7d7449e 100644 --- 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 -- 2.39.2