Skip to content

Commit 4d90e4a

Browse files
authored
Merge branch 'main' into main
2 parents 5b3aa6b + 6d57230 commit 4d90e4a

13 files changed

Lines changed: 25 additions & 22 deletions

File tree

.github/workflows/codespell.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v6
16+
- uses: actions/checkout@v7
1717

1818
- name: Setup Python
19-
uses: actions/setup-python@v6
19+
uses: actions/setup-python@v7
2020
with:
2121
python-version: '3.14'
2222
cache: "pip"

.github/workflows/docs-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v6
16+
- uses: actions/checkout@v7
1717

1818
- name: Install pandoc and doxygen
1919
run: |
2020
sudo apt install pandoc doxygen
2121
2222
- name: Setup Python
23-
uses: actions/setup-python@v6
23+
uses: actions/setup-python@v7
2424
with:
2525
python-version: '3.14'
2626
cache: "pip"

.github/workflows/flake8.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919

2020
- name: Install Python
21-
uses: actions/setup-python@v6
21+
uses: actions/setup-python@v7
2222
with:
2323
python-version: '3.14'
2424
cache: "pip"

.github/workflows/gh-pages.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v6
12+
- uses: actions/checkout@v7
13+
with:
14+
fetch-depth: 0
1315

1416
- name: Install pandoc and doxygen
1517
run: |
1618
sudo apt install pandoc doxygen
1719
1820
- name: Setup Python
19-
uses: actions/setup-python@v6
21+
uses: actions/setup-python@v7
2022
with:
2123
python-version: '3.14'
2224
cache: "pip"

.github/workflows/isort.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919

2020
- name: Install Python
21-
uses: actions/setup-python@v6
21+
uses: actions/setup-python@v7
2222
with:
2323
python-version: '3.14'
2424
cache: "pip"

.github/workflows/pylint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919

2020
- name: Install Python
21-
uses: actions/setup-python@v6
21+
uses: actions/setup-python@v7
2222
with:
2323
python-version: '3.14'
2424
cache: "pip"

.github/workflows/pytest-mac.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
python-version: ["3.12", "3.13"]
2020

2121
steps:
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v7
2323

2424
- name: Install Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v6
25+
uses: actions/setup-python@v7
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
cache: "pip"

.github/workflows/pytest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
python-version: ["3.12", "3.13", "3.14"]
2020

2121
steps:
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v7
2323

2424
- name: Install Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v6
25+
uses: actions/setup-python@v7
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
allow-prereleases: true

.github/workflows/regtest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
python-version: ["3.12", "3.13", "3.14"]
2020

2121
steps:
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v7
2323

2424
- name: Install Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v6
25+
uses: actions/setup-python@v7
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
allow-prereleases: true

docs/source/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,8 @@
157157
"text": f"pyro {version}",
158158
"image_light": "logo.gif",
159159
"image_dark": "logo.gif",
160-
}
160+
},
161+
"disable_search": True,
161162
}
162163

163164
# Add any paths that contain custom static files (such as style sheets) here,

0 commit comments

Comments
 (0)