Merge pull request #1045 from SheffieldML/1038-limit-maximum-python-version

limit minimum python version #1038
This commit is contained in:
Martin Bubel 2023-12-20 16:07:58 +01:00 committed by GitHub
commit f6db4775b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 1 deletions

View file

@ -2,6 +2,8 @@
## Unreleased
* limit supported python versions to `">=3.9"` in accordance with numpy
* Change from `nosetest` to `pytest`
## v1.9.8 (2019-05-17)

View file

@ -79,7 +79,7 @@ If that is the case, it is best to clean the repo and reinstall.
[<img src="https://upload.wikimedia.org/wikipedia/commons/8/8e/OS_X-Logo.svg" height=40px>](http://www.apple.com/osx/)
[<img src="https://upload.wikimedia.org/wikipedia/commons/3/35/Tux.svg" height=40px>](https://en.wikipedia.org/wiki/List_of_Linux_distributions)
Python 3.5 and higher
Python 3.9 and higher
## Citation

View file

@ -158,6 +158,7 @@ setup(
description=("The Gaussian Process Toolbox"),
long_description=desc,
license="BSD 3-clause",
python_requires=">=3.9",
keywords="machine-learning gaussian-processes kernels",
url="https://sheffieldml.github.io/GPy/",
download_url="https://github.com/SheffieldML/GPy/archive/refs/heads/devel.zip",