Skip to content

Commit bbf9f6e

Browse files
authored
Fix pandas intersphinx mapping; fix test setup (#136)
1 parent 31460de commit bbf9f6e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def get_years(start_year=2021):
108108
"sklearn": ("https://scikit-learn.org/stable", None),
109109
"numpy": ("https://numpy.org/doc/stable/", None),
110110
"matplotlib": ("https://matplotlib.org/stable/", None),
111-
"pandas": ("http://pandas.pydata.org/pandas-docs/dev", None),
111+
"pandas": ("https://pandas.pydata.org/docs/", None),
112112
"scipy": ("http://docs.scipy.org/doc/scipy/reference/", None),
113113
"joblib": ("https://joblib.readthedocs.io/en/latest/", None),
114114
"plotly": ("https://plotly.com/python-api-reference/", None)

setup.cfg

+3-2
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ dev =
8989
isort
9090
toml
9191
coverage
92-
pytest
92+
pytest==7.4.4
9393
pytest-benchmark
9494
pytest-xdist
9595
pytest-timeout
96-
pytest-sphinx
96+
pytest-sphinx==0.5.0
9797
tables<=3.8
9898
licenseheaders
9999
# TODO(stes) Add back once upstream issue
@@ -105,3 +105,4 @@ dev =
105105

106106
[bdist_wheel]
107107
universal=1
108+

0 commit comments

Comments
 (0)