diff options
-rw-r--r-- | docs/news.txt | 8 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | tox.ini | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/docs/news.txt b/docs/news.txt index d3ccc5d..b232569 100644 --- a/docs/news.txt +++ b/docs/news.txt @@ -3,6 +3,14 @@ News .. contents:: +3.5.1 +----- + +* Replace deprecated threading.currentThread, getName and setDaemon + with threading.current_thread, name and daemon. + +Thanks to hugovk. + 3.5.0 ----- @@ -12,7 +12,7 @@ # - git push # - python setup.py sdist bdist_wheel upload --sign -__version__ = '3.5.0' +__version__ = '3.5.1' from setuptools import setup, find_packages import sys, os @@ -1,5 +1,5 @@ [tox] -envlist = py27, py36, py37, py38, pypy +envlist = py27, py36, py37, py38, py39, pypy [testenv] # For performance, but also for using "source" with coveragepy (https://github.com/nedbat/coveragepy/issues/268). |