Skip to content

Commit a17cb2b

Browse files
authored
Merge branch 'master' into add-rmsprop-optimizer
2 parents 5ca751b + 25bcced commit a17cb2b

8 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- run: sudo apt-get update && sudo apt-get install -y libhdf5-dev
13-
- uses: actions/checkout@v6
13+
- uses: actions/checkout@v7
1414
- uses: astral-sh/setup-uv@v7
1515
with:
1616
enable-cache: true
1717
cache-dependency-glob: uv.lock
18-
- uses: actions/setup-python@v6
18+
- uses: actions/setup-python@v7
1919
with:
2020
python-version: 3.14
2121
allow-prereleases: true

.github/workflows/devcontainer_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v6
15+
- uses: actions/checkout@v7
1616
- uses: devcontainers/ci@v0.3
1717
with:
1818
push: never

.github/workflows/directory_writer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ jobs:
66
directory_writer:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v6
9+
- uses: actions/checkout@v7
1010
with:
1111
fetch-depth: 0
12-
- uses: actions/setup-python@v6
12+
- uses: actions/setup-python@v7
1313
with:
1414
python-version: 3.14
1515
allow-prereleases: true

.github/workflows/project_euler.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
libxml2-dev libxslt-dev
2222
libhdf5-dev
2323
libopenblas-dev
24-
- uses: actions/checkout@v6
24+
- uses: actions/checkout@v7
2525
- uses: astral-sh/setup-uv@v7
26-
- uses: actions/setup-python@v6
26+
- uses: actions/setup-python@v7
2727
with:
2828
python-version: 3.14
2929
allow-prereleases: true
@@ -39,9 +39,9 @@ jobs:
3939
libxml2-dev libxslt-dev
4040
libhdf5-dev
4141
libopenblas-dev
42-
- uses: actions/checkout@v6
42+
- uses: actions/checkout@v7
4343
- uses: astral-sh/setup-uv@v7
44-
- uses: actions/setup-python@v6
44+
- uses: actions/setup-python@v7
4545
with:
4646
python-version: 3.14
4747
allow-prereleases: true

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
ruff:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v6
14+
- uses: actions/checkout@v7
1515
- uses: astral-sh/setup-uv@v7
1616
- run: uvx ruff check --output-format=github .

.github/workflows/sphinx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
libxml2-dev libxslt-dev
3333
libhdf5-dev
3434
libopenblas-dev
35-
- uses: actions/checkout@v6
35+
- uses: actions/checkout@v7
3636
- uses: astral-sh/setup-uv@v7
37-
- uses: actions/setup-python@v6
37+
- uses: actions/setup-python@v7
3838
with:
3939
python-version: 3.14
4040
allow-prereleases: true

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repos:
1919
- id: auto-walrus
2020

2121
- repo: https://github.com/astral-sh/ruff-pre-commit
22-
rev: v0.15.14
22+
rev: v0.15.20
2323
hooks:
2424
- id: ruff-check
2525
- id: ruff-format
@@ -32,7 +32,7 @@ repos:
3232
- tomli
3333

3434
- repo: https://github.com/tox-dev/pyproject-fmt
35-
rev: v2.21.2
35+
rev: v2.25.1
3636
hooks:
3737
- id: pyproject-fmt
3838

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,14 +169,14 @@ skip = """\
169169
python_version = "3.14"
170170

171171
[tool.pytest]
172-
ini_options.markers = [
173-
"mat_ops: mark a test as utilizing matrix operations.",
174-
]
175172
ini_options.addopts = [
176173
"--durations=10",
177174
"--doctest-modules",
178175
"--showlocals",
179176
]
177+
ini_options.markers = [
178+
"mat_ops: mark a test as utilizing matrix operations.",
179+
]
180180

181181
[tool.coverage]
182182
report.omit = [
@@ -265,5 +265,5 @@ myst_fence_as_directive = [
265265
]
266266
templates_path = [ "_templates" ]
267267
source_suffix.".rst" = "restructuredtext"
268-
# ".txt" = "markdown"
269268
source_suffix.".md" = "markdown"
269+
# ".txt" = "markdown"

0 commit comments

Comments
 (0)