mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-07-02 16:01:03 +02:00
Merge pull request #1045 from SheffieldML/1038-limit-maximum-python-version
limit minimum python version #1038
This commit is contained in:
commit
f6db4775b1
3 changed files with 4 additions and 1 deletions
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
* limit supported python versions to `">=3.9"` in accordance with numpy
|
||||||
|
|
||||||
* Change from `nosetest` to `pytest`
|
* Change from `nosetest` to `pytest`
|
||||||
|
|
||||||
## v1.9.8 (2019-05-17)
|
## v1.9.8 (2019-05-17)
|
||||||
|
|
|
||||||
|
|
@ -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/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)
|
[<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
|
## Citation
|
||||||
|
|
||||||
|
|
|
||||||
1
setup.py
1
setup.py
|
|
@ -158,6 +158,7 @@ setup(
|
||||||
description=("The Gaussian Process Toolbox"),
|
description=("The Gaussian Process Toolbox"),
|
||||||
long_description=desc,
|
long_description=desc,
|
||||||
license="BSD 3-clause",
|
license="BSD 3-clause",
|
||||||
|
python_requires=">=3.9",
|
||||||
keywords="machine-learning gaussian-processes kernels",
|
keywords="machine-learning gaussian-processes kernels",
|
||||||
url="https://sheffieldml.github.io/GPy/",
|
url="https://sheffieldml.github.io/GPy/",
|
||||||
download_url="https://github.com/SheffieldML/GPy/archive/refs/heads/devel.zip",
|
download_url="https://github.com/SheffieldML/GPy/archive/refs/heads/devel.zip",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue