Skip to content

Commit

Permalink
Merge pull request #78 from skoudoro/update-ablog
Browse files Browse the repository at this point in the history
CI: Update dependencies version
  • Loading branch information
skoudoro authored Feb 19, 2025
2 parents 39b4c27 + fc35aed commit 6985a20
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@

from packaging.version import Version
import sphinx
if Version(sphinx.__version__) < Version('6') or Version(sphinx.__version__) >= Version('8'):
raise RuntimeError('Needs 8 > Sphinx Version >= 6 for numpydoc to work correctly')
if Version(sphinx.__version__) < Version('7'):
raise RuntimeError('Sphinx Version >= 7 for numpydoc to work correctly')

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.append(os.path.abspath('sphinxext'))

# -- General configuration -----------------------------------------------------
rel={}
rel = {}
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.autodoc',
Expand Down
16 changes: 8 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
numpydoc
sphinx==7.4.6
tomli>=2.0.1
grg-sphinx-theme>=0.4.0
Jinja2
ablog==0.11.5
sphinx-reredirects>=0.1.3
codespell>=2.3.0
numpydoc>=1.8.0
sphinx>=8.1.0
tomli>=2.2.1
grg-sphinx-theme>=0.4.2
Jinja2>=3.1.5
ablog>=0.11.12
sphinx-reredirects>=0.1.5
codespell>=2.4.1

0 comments on commit 6985a20

Please sign in to comment.