Skip to content

Commit

Permalink
Merge pull request #218 from JesseLivezey/version-hints
Browse files Browse the repository at this point in the history
Version hints
  • Loading branch information
JesseLivezey authored Oct 18, 2023
2 parents dc03389 + d964e5d commit 25e4765
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
python -m pytest -sv --cov=./ tests
- name: Build docs
run: |
sphinx-build -W -b html docs/source docs/build
sphinx-build -b html docs/source docs/build
- name: Codecov
run: |
python -m codecov
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,15 @@ to build from source and

to run the tests and check formatting.

PyUoI has been built and tested on Python 3.9.18 with

* numpy==1.26.1
* h5py==3.10.0
* scikit-learn==1.3.1
* cython==3.0.4
* pytest==7.4.2
* flake8==6.1.0

# Features

PyUoI is split up into two modules, with the following UoI algorithms:
Expand Down
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,8 @@
# -- Options for intersphinx extension ---------------------------------------

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}
intersphinx_mapping = {"python": ("https://docs.python.org/", None),
"sklearn": ("https://scikit-learn.org/stable/", None)}

# -- Options for todo extension ----------------------------------------------

Expand Down
9 changes: 9 additions & 0 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,15 @@ to build from source and

to run the tests and check formatting.

PyUoI has been built and tested on Python 3.9.18 with

* numpy==1.26.1
* h5py==3.10.0
* scikit-learn==1.3.1
* cython==3.0.4
* pytest==7.4.2
* flake8==6.1.0

Docs
^^^^

Expand Down

0 comments on commit 25e4765

Please sign in to comment.