Skip to content

Commit 06e9a54

Browse files
authored
Merge pull request scipy#21324 from WarrenWeckesser/avoid-shinx-8
DOC: Don't use Sphinx 8.0.0 until scipygh-21323 is resolved.
2 parents bcf317e + 0d669f7 commit 06e9a54

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/source/tutorial/stats/hypothesis_spearmanr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ res.pvalue
157157

158158
Note that the t-distribution provides an asymptotic approximation of the null
159159
distribution; it is only accurate for samples with many observations. For small
160-
samples, it may be more appropriate to perform a permutation test: Under the
160+
samples, it may be more appropriate to perform a permutation test [^4]: Under the
161161
null hypothesis that total collagen and free proline are independent, each of
162162
the free proline measurements were equally likely to have been observed with any
163163
of the total collagen measurements. Therefore, we can form an *exact* null

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ test = [
8888
'ninja; sys_platform != "emscripten"',
8989
]
9090
doc = [
91-
"sphinx>=5.0.0",
91+
"sphinx>=5.0.0,<8.0.0",
9292
"intersphinx_registry",
9393
"pydata-sphinx-theme>=0.15.2",
9494
"sphinx-copybutton",

requirements/doc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Generated via tools/generate_requirements.py.
22
# Do not edit this file; modify `pyproject.toml` instead and run `python tools/generate_requirements.py`.
3-
sphinx>=5.0.0
3+
sphinx>=5.0.0,<8.0.0
44
intersphinx_registry
55
pydata-sphinx-theme>=0.15.2
66
sphinx-copybutton

0 commit comments

Comments
 (0)