Skip to content

Commit 70b9b1c

Browse files
Set Sphinx minimum version to 7.0.0
1 parent b2b8175 commit 70b9b1c

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

cf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
else:
123123
# Check the version of cfdm
124124
_minimum_vn = "1.12.2.0"
125-
_maximum_vn = "1.12.3.0"
125+
_maximum_vn = "1.12.10.0"
126126
_cfdm_version = Version(cfdm.__version__)
127127
if _cfdm_version < Version(_minimum_vn) or _cfdm_version >= Version(
128128
_maximum_vn

release_docs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@ fi
1010

1111
version=`python -c "import cf; print(cf.__version__)"`
1212

13+
1314
sphinx_version=`python -c "import sphinx; print(sphinx.__version__)"`
14-
if [[ $sphinx_version != "2.4.5" ]] ; then
15-
echo "ERROR: Must (sadly) use sphinx version 2.4.5. Got $sphinx_version"
16-
exit 3
17-
fi
15+
echo "NOTE: Using sphinx version: $sphinx_version"
1816

1917
if [[ $1 = "latest" ]] ; then
2018
dir=$PWD/docs

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def compile():
251251
"convolution filters, derivatives, relative vorticity": ["scipy>=1.1.0"],
252252
"subspacing with multi-dimensional construct cells": ["matplotlib>=3.0.0"],
253253
"documentation": [
254-
"sphinx==2.4.5",
254+
"sphinx>=7.0.0",
255255
"sphinx-copybutton",
256256
"sphinx-toggleprompt",
257257
"sphinxcontrib-spelling",

0 commit comments

Comments
 (0)