Skip to content

Commit d7bf98a

Browse files
authored
Maintainance PR (#506)
* update dependencies * fix: update to latest version * update dependencies * update dependencies * Update requirements.txt
1 parent e2241ef commit d7bf98a

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
BING_TOKEN: ${{ secrets.BING_TOKEN }}
6161

6262
- name: Deploy documentation sphinx
63-
uses: JamesIves/github-pages-deploy-action@v4.6.4
63+
uses: JamesIves/github-pages-deploy-action@v4.7.2
6464
with:
6565
token: ${{ secrets.GITHUB_TOKEN }}
6666
branch: gh-pages

.github/workflows/preview_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- run: touch build/html/.nojekyll
4545

4646
- name: Deploy documentation sphinx
47-
uses: JamesIves/github-pages-deploy-action@v4.6.4
47+
uses: JamesIves/github-pages-deploy-action@v4.7.2
4848
with:
4949
token: ${{ secrets.GITHUB_TOKEN }}
5050
branch: gh-pages

extensions/fortran_playground.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
from sphinx.directives.code import CodeBlock, parselinenos, dedent_lines, container_wrapper, logger
1+
from sphinx.directives.code import CodeBlock, dedent_lines, container_wrapper, logger
22
import urllib.parse
3+
from sphinx.util._lines import parse_line_num_spec
34
from docutils import nodes
45
import subprocess
56

@@ -43,7 +44,7 @@ def run(self):
4344
if linespec:
4445
try:
4546
nlines = len(self.content)
46-
hl_lines = parselinenos(linespec, nlines)
47+
hl_lines = parse_line_num_spec(linespec, nlines)
4748
if any(i >= nlines for i in hl_lines):
4849
logger.warning(__('line number spec is out of range(1-%d): %r') %
4950
(nlines, self.options['emphasize-lines']),

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
Sphinx==8.0.2
1+
Sphinx==8.1.3
22
ablog==0.11.11
3-
pydata-sphinx-theme==0.15.4
3+
pydata-sphinx-theme==0.16.1
44
myst-parser==4.0.0
55
sphinx_design==0.6.1
66
sphinx_copybutton==0.5.2
77
sphinx-jinja==2.0.2
88
jinja2==3.1.4
99
requests==2.32.3
10-
black==24.8.0
11-
pylint==3.3.0
12-
pre-commit==3.8.0
10+
black==24.10.0
11+
pylint==3.3.3
12+
pre-commit==4.0.1
1313
sphinx-sitemap==2.6.0
1414
sphinx-favicon==1.0.1

0 commit comments

Comments
 (0)