-
Notifications
You must be signed in to change notification settings - Fork 726
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
Miscellaneous fixes #939
Miscellaneous fixes #939
Conversation
Signed-off-by: Keith Battocchi <[email protected]>
Signed-off-by: Keith Battocchi <[email protected]>
Signed-off-by: Keith Battocchi <[email protected]>
Signed-off-by: Keith Battocchi <[email protected]>
Signed-off-by: Keith Battocchi <[email protected]>
5c7bc4d
to
4068916
Compare
Signed-off-by: Keith Battocchi <[email protected]>
4068916
to
dcf516f
Compare
@@ -228,10 +228,10 @@ | |||
# Example configuration for intersphinx: refer to the Python standard library. | |||
intersphinx_mapping = {'python': ('https://docs.python.org/3', None), | |||
'numpy': ('https://numpy.org/doc/stable/', None), | |||
'sklearn': ('https://scikit-learn.org/stable/', None), | |||
'sklearn': ('https://scikit-learn.org/1.5/', None), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Even though this PR enables support for sklearn 1.6, that doesn't help here because our docs still build on Python 3.8 (because of the tensorflow dependency for Deep IV), where sklearn 1.5 is the latest version.
We need to specifically link to this version of the sklearn docs because there was a change in the structure of their docs between 1.5 and 1.6, so the mismatch between what we were building against vs. what we were linking to was causing broken links.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
Fixes #938, plus cleans up some other minor issues, including enabling sklearn 1.6 and fixing our documentation builds.