Skip to content

Commit a959c0a

Browse files
authored
Merge branch 'main' into feat/memory-store-registry
2 parents ea08be0 + b6d3ae2 commit a959c0a

10 files changed

Lines changed: 33 additions & 14 deletions

.github/workflows/check_changelogs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: Check changelog entries
22

33
on:
44
pull_request:
5+
workflow_dispatch:
6+
7+
permissions:
8+
contents: read
59

610
jobs:
711
check-changelogs:

.github/workflows/gpu_test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ on:
1313
env:
1414
LD_LIBRARY_PATH: /usr/local/cuda/extras/CUPTI/lib64:/usr/local/cuda/lib64
1515

16+
permissions:
17+
contents: read
18+
1619
concurrency:
1720
group: ${{ github.workflow }}-${{ github.ref }}
1821
cancel-in-progress: true

.github/workflows/hypothesis.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ on:
99
- cron: "0 0 * * *" # Daily “At 00:00” UTC
1010
workflow_dispatch: # allows you to trigger manually
1111

12+
permissions:
13+
contents: read
14+
1215
env:
1316
FORCE_COLOR: 3
1417

.github/workflows/lint.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
branches: [main, 3.1.x]
88
workflow_dispatch:
99

10+
permissions:
11+
contents: read
12+
1013
concurrency:
1114
group: ${{ github.workflow }}-${{ github.ref }}
1215
cancel-in-progress: true
@@ -17,9 +20,4 @@ jobs:
1720
runs-on: ubuntu-latest
1821
steps:
1922
- uses: actions/checkout@v6
20-
- name: Install uv
21-
uses: astral-sh/setup-uv@v7
22-
- name: Install prek
23-
run: uv tool install prek
24-
- name: Run prek
25-
run: prek run --all-files
23+
- uses: j178/prek-action@v1

.github/workflows/needs_release_notes.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: "Pull Request Labeler"
22

33
on:
4-
- pull_request_target
4+
- pull_request_target:
5+
types: [opened, reopened, synchronize]
56

67
jobs:
78
labeler:

.github/workflows/nightly_wheels.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
- cron: '0 2 * * *'
77
workflow_dispatch:
88

9+
permissions:
10+
contents: read
11+
912
jobs:
1013
build_and_upload_nightly:
1114
name: Build and upload nightly wheels

.github/workflows/releases.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
name: Wheels
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
workflow_dispatch:
9+
10+
permissions:
11+
contents: read
412

513
jobs:
614

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ on:
1010
branches: [ main, 3.1.x ]
1111
workflow_dispatch:
1212

13+
permissions:
14+
contents: read
15+
1316
concurrency:
1417
group: ${{ github.workflow }}-${{ github.ref }}
1518
cancel-in-progress: true
@@ -150,4 +153,4 @@ jobs:
150153
contains(needs.*.result, 'cancelled')
151154
run: exit 1
152155
- name: Success
153-
run: echo Success!
156+
run: echo Success!

.pre-commit-config.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,6 @@ repos:
5050
rev: 2026.03.02
5151
hooks:
5252
- id: sp-repo-review
53-
- repo: https://github.com/pre-commit/pygrep-hooks
54-
rev: v1.10.0
55-
hooks:
56-
- id: rst-directive-colons
57-
- id: rst-inline-touching-normal
5853
- repo: https://github.com/numpy/numpydoc
5954
rev: v1.10.0
6055
hooks:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,7 @@ markers = [
422422
[tool.repo-review]
423423
ignore = [
424424
"PC111", # fix Python code in documentation - enable later
425+
"PC170", # use PyGrep hooks - no *.rst files to check
425426
"PC180", # for JavaScript - not interested
426427
"PC902", # pre-commit.ci custom autofix message - not using autofix
427428
]

0 commit comments

Comments
 (0)