Skip to content

Commit 19dbc74

Browse files
author
Thomas Pinder
committed
Bump version
1 parent ffc2bed commit 19dbc74

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

gpjax/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
from .parameters import initialise, transform, copy_dict_structure
1414
from .types import Dataset
1515

16-
__version__ = "0.3.8"
16+
__version__ = "0.4.0"

setup.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,23 @@ def parse_requirements_file(filename):
3030

3131
setup(
3232
name="GPJax",
33-
version="0.3.9",
33+
version="0.4.0",
3434
author="Thomas Pinder",
3535
author_email="[email protected]",
3636
packages=find_packages(".", exclude=["tests"]),
3737
license="LICENSE",
3838
description="Didactic Gaussian processes in Jax.",
39-
long_description="GPJax aims to provide a low-level interface to Gaussian process models. Code is written entirely in Jax to enhance readability, and structured so as to allow researchers to easily extend the code to suit their own needs. When defining GP prior in GPJax, the user need only specify a mean and kernel function. A GP posterior can then be realised by computing the product of our prior with a likelihood function. The idea behind this is that the code should be as close as possible to the maths that we would write on paper when working with GP models.",
39+
long_description=(
40+
"GPJax aims to provide a low-level interface to Gaussian process"
41+
" models. Code is written entirely in Jax to enhance readability, and"
42+
" structured so as to allow researchers to easily extend the code to"
43+
" suit their own needs. When defining GP prior in GPJax, the user need"
44+
" only specify a mean and kernel function. A GP posterior can then be"
45+
" realised by computing the product of our prior with a likelihood"
46+
" function. The idea behind this is that the code should be as close as"
47+
" possible to the maths that we would write on paper when working with"
48+
" GP models."
49+
),
4050
install_requires=parse_requirements_file("requirements.txt"),
4151
extras_require=EXTRAS,
4252
keywords=["gaussian-processes jax machine-learning bayesian"],

0 commit comments

Comments
 (0)