limit minimum python version #1038

This commit is contained in:
Martin Bubel 2023-11-16 22:03:03 +01:00
parent 328312f342
commit 0260dbcebf
2 changed files with 3 additions and 0 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

@ -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",