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

Attempt to fix docs build #1169

Merged
merged 13 commits into from
Mar 8, 2024
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,10 @@
numpydoc_show_class_members = False
numpydoc_show_inherited_class_members = False

_python_doc_base = "https://docs.python.org/3.9"
_python_doc_base = "https://docs.python.org/3.11"

Check notice

Code scanning / CodeQL

Unused global variable Note documentation

The global variable '_python_doc_base' is not used.

intersphinx_mapping = {
"python": ("https://docs.python.org/3.9", None),
"python": ("https://docs.python.org/3.11", None),
"numpy": ("https://numpy.org/doc/stable", None),
"scipy": ("https://docs.scipy.org/doc/scipy/reference", None),
"scikit-learn": ("https://scikit-learn.org/stable", None),
Expand Down
3 changes: 2 additions & 1 deletion docs/docs-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ channels:
- jaimergp/label/unsupported-cudatoolkit-shim
- conda-forge
dependencies:
- python>=3.8
- importlib_resources
- python>=3.11
- pip
- pip:
- boltons
Expand Down
Loading