Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ List of Contents:
Installation
------------

The implementation of LCGP requires Python 3.9 or above. The package can be installed through
The implementation of LCGP requires Python `>=3.9, <3.14`. The package can be installed through

.. code:: bash

Expand All @@ -56,12 +56,13 @@ The LCGP package has the following dependencies, as listed in its pyproject.toml
'numpy>=1.18.3',
'scipy>=1.10.1',
'tensorflow>=2.16.0',
'gpflow>=2.5.0'
'joblib>=1.4.2',
'gpflow>=2.5.0',
"tensorflow-probability[tf]>=0.25.0",
"pytest>=8.4.2",

..

This package is supported in Python `>=3.9, <3.14`.

Test suite
~~~~~~~~~~

Expand Down Expand Up @@ -201,7 +202,6 @@ hyperparameter training. The two choices are implemented through

model = LCGP(y=y, x=x, robust_mean=False)

--------------

.. |CI| image:: https://github.com/mosesyhc/lcgp/actions/workflows/ci.yml/badge.svg?branch=main
:target: https://github.com/mosesyhc/LCGP/actions/workflows/ci.yml
Expand Down
Loading