Dropped Python 3.3 and 3.4 compatibility

This commit is contained in:
Bruno Bord 2019-09-22 17:52:20 +02:00
parent 8c63fefd4f
commit 2c715b5bea
No known key found for this signature in database
GPG Key ID: 9499EA6788BF80A1
3 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@
* Added a ``--check-only`` argument to ``download.py`` to display the expiration dates of the files currently on disk.
* Enable computation of the expiration date of the BSP file(s) on disk (requires to install the local repository using the [dev] option / See README for more information).
* Dropped compatibility with Python 3.3 and 3.4, as skyfield did.
## 0.0.2 (2019-08-23)

View File

@ -65,7 +65,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.6/2.7 and Python 3.3+, to be kept the same Python compatiblity that `skyfield` has.
*Note:* This project is, and should be compatible with Python 2.6/2.7 and Python 3.5+, to be kept the same Python compatiblity that `skyfield` has.
## Copyright

View File

@ -27,7 +27,7 @@ classifiers =
[options]
zip_safe = false
include_package_data = True
python_requires = >=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4
python_requires = >=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4
packages = skyfield_data
setup_requires =
setuptools