Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Pinder committed Feb 7, 2022
1 parent ffc2bed commit 19dbc74
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gpjax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
from .parameters import initialise, transform, copy_dict_structure
from .types import Dataset

__version__ = "0.3.8"
__version__ = "0.4.0"
14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,23 @@ def parse_requirements_file(filename):

setup(
name="GPJax",
version="0.3.9",
version="0.4.0",
author="Thomas Pinder",
author_email="t.pinder2@lancaster.ac.uk",
packages=find_packages(".", exclude=["tests"]),
license="LICENSE",
description="Didactic Gaussian processes in Jax.",
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.",
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."
),
install_requires=parse_requirements_file("requirements.txt"),
extras_require=EXTRAS,
keywords=["gaussian-processes jax machine-learning bayesian"],
Expand Down

0 comments on commit 19dbc74

Please sign in to comment.