Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version hints #218

Merged
merged 2 commits into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
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
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