Skip to content

Commit f3ffdec

Browse files
committed
Latest boilerplate.
1 parent 8e860d3 commit f3ffdec

File tree

6 files changed

+35
-82
lines changed

6 files changed

+35
-82
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- uses: actions/checkout@v6
2929
- uses: prefix-dev/setup-pixi@v0.9.4
3030
with:
31-
pixi-version: v0.64.0
31+
pixi-version: v0.65.0
3232
cache: true
3333
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
3434
environments: test-cpu
@@ -54,11 +54,11 @@ jobs:
5454
- uses: actions/checkout@v6
5555
- uses: prefix-dev/setup-pixi@v0.9.4
5656
with:
57-
pixi-version: v0.64.0
57+
pixi-version: v0.65.0
5858
cache: true
5959
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
6060
frozen: true
61-
environments: py314
61+
environments: ty
6262
- name: Run ty
63-
run: pixi run -e py314 ty
63+
run: pixi run ty
6464
shell: bash -el {0}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ docs/_build/
2929

3030
# pixi
3131
.pixi/
32+
node_modules/
3233

3334
# Python
3435
__pycache__/

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repos:
55
- id: check-hooks-apply
66
- id: check-useless-excludes
77
- repo: https://github.com/tox-dev/pyproject-fmt
8-
rev: v2.12.1
8+
rev: v2.16.2
99
hooks:
1010
- id: pyproject-fmt
1111
- repo: https://github.com/lyz-code/yamlfix
@@ -47,7 +47,7 @@ repos:
4747
hooks:
4848
- id: yamllint
4949
- repo: https://github.com/astral-sh/ruff-pre-commit
50-
rev: v0.14.11
50+
rev: v0.15.5
5151
hooks:
5252
- id: ruff-check
5353
args:
@@ -62,7 +62,7 @@ repos:
6262
- pyi
6363
- python
6464
- repo: https://github.com/kynan/nbstripout
65-
rev: 0.8.2
65+
rev: 0.9.1
6666
hooks:
6767
- id: nbstripout
6868
args:

.readthedocs.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,7 @@ build:
1616
# Jupyter Book 2.0 builds site content to _build/html.
1717
# For ReadTheDocs, we build and then copy to the expected output location.
1818
- mkdir --parents $READTHEDOCS_OUTPUT/html/
19-
- BASE_URL="/$READTHEDOCS_LANGUAGE/$READTHEDOCS_VERSION" pixi run -e docs docs
19+
- >-
20+
BASE_URL="/$READTHEDOCS_LANGUAGE/$READTHEDOCS_VERSION"
21+
pixi run -e docs build-docs
2022
- cp -a docs/_build/html/. "$READTHEDOCS_OUTPUT/html" && rm -r docs/_build

0 commit comments

Comments
 (0)