M CONTRIBUTING.rst => CONTRIBUTING.rst +2 -2
@@ 34,8 34,8 @@ The linters and tests can then be run with the commands in the ``Makefile``::
make test
If you are using ``pyenv``, you can run the tests on multiple versions of Python.
-Use ``pyenv`` to install pythons from the 2.7, 3.5, and 3.8 series;
+Use ``pyenv`` to install pythons from the 2.7, 3.5, and 3.9 series;
then activate them in the project folder and run the tests with, e.g.::
- pyenv local 3.8.2 3.5.9 2.7.17
+ pyenv local 3.9.0 3.5.9 2.7.17
make test-all
M setup.py => setup.py +1 -0
@@ 31,6 31,7 @@ setuptools.setup(
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering :: Visualization",
],
M tox.ini => tox.ini +2 -2
@@ 1,5 1,5 @@
[tox]
-envlist = py27, py35, py38, coverage
+envlist = py27, py35, py39, coverage
[testenv]
deps =
@@ 7,7 7,7 @@ deps =
hypothesis
py27: numpy==1.6.2
py35: numpy==1.9.3
- py38: numpy==1.17.4
+ py39: numpy==1.17.4
commands = pytest