Added Python 3.8 compatibility

closes #1
This commit is contained in:
Bruno Bord 2020-05-05 16:24:53 +02:00
parent 8bad393d58
commit 2ad6911362
No known key found for this signature in database
GPG Key ID: 9499EA6788BF80A1
5 changed files with 5 additions and 2 deletions

View File

@ -8,5 +8,6 @@ python:
- 3.5
- 3.6
- 3.7
- 3.8
matrix:
fast_finish: true

View File

@ -5,6 +5,7 @@
* Revamped/Simplified Travis configuration.
* Removed tox.ini reference to Python 3.3 builds.
* Warn users that this project is not compatible with Python 2.6.
* Add Python 3.8 compatibility (#1).
## 1.0.0 (2020-05-05)

View File

@ -95,7 +95,7 @@ In order to be able to run the `download.py` script, we recommend to run it **fr
make install-dev
```
*Note:* This project is, and should be compatible with Python 2.7 and Python 3.5+, to keep the same Python compatiblity that `skyfield` has.
*Note:* This project is, and should be compatible with Python 2.7 and Python 3.5+ up to 3.8, to keep the same Python compatiblity that `skyfield` has.
**WARNING!**: This project is not compatible with Python 2.6.

View File

@ -21,6 +21,7 @@ classifiers =
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
zip_safe = false

View File

@ -1,5 +1,5 @@
[tox]
envlist = py27,py35,py36,py37
envlist = py27,py35,py36,py37,py38
[testenv]