Add Python 3.8 as supported

This commit is contained in:
Sergey Petrov
2019-10-26 03:29:50 +03:00
parent f4dda7bcb5
commit aedc64e8bc
4 changed files with 6 additions and 3 deletions
+2 -2
View File
@@ -64,8 +64,8 @@ pytest
You can use `tox` for running tests with all supported Python versions:
```shell
pyenv install 3.5.6; pyenv install 3.6.7; pyenv install 3.7.1
pyenv local 3.7.1 3.6.7 3.5.6
pyenv install 3.5.6; pyenv install 3.6.7; pyenv install 3.7.1; pyenv install 3.8.0
pyenv local 3.8.0 3.7.1 3.6.7 3.5.6
pip install tox
tox
```