Skip to content

Commit 935f493

Browse files
committed
Bump tool versions.
1 parent 06e30da commit 935f493

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ jobs:
44
build:
55
runs-on: ubuntu-latest
66
strategy:
7+
fail-fast: false
78
matrix:
89
include:
910
- python-version: "2.7"
@@ -51,7 +52,7 @@ jobs:
5152
env:
5253
TOXENV: docs
5354
steps:
54-
- uses: actions/checkout@v2
55+
- uses: actions/checkout@v4
5556
- name: Set up Python ${{ matrix.python-version }}
5657
uses: MatteoH2O1999/setup-python@v4
5758
with:

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
deploy:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010
- name: Set up Python
11-
uses: actions/setup-python@v2
11+
uses: actions/setup-python@v5
1212
with:
13-
python-version: "3.x"
13+
python-version: "3.13"
1414
- name: Install dependencies
1515
run: |
1616
python -m pip install --upgrade pip

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/PyCQA/bandit
3-
rev: 1.7.9
3+
rev: 1.7.10
44
hooks:
55
- id: bandit
66
args: [-r, -c, .bandit.yml]

docs/conf.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,8 @@
2222
sys.path.insert(0, path.dirname(path.dirname(__file__)))
2323

2424

25-
import sphinx_rtd_theme
26-
2725
html_theme = "sphinx_rtd_theme"
2826

29-
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
30-
3127
# -- General configuration ------------------------------------------------
3228

3329
# If your documentation needs a minimal Sphinx version, state it here.
@@ -48,7 +44,7 @@
4844
# You can specify multiple suffix as a list of string:
4945
#
5046
# source_suffix = ['.rst', '.md']
51-
source_suffix = '.rst'
47+
source_suffix = {'.rst': 'restructuredtext'}
5248

5349
# The master toctree document.
5450
master_doc = 'index'

0 commit comments

Comments
 (0)