Skip to content

Commit 42fd802

Browse files
authored
Merge branch 'main' into feat/python-3.13-3.14-support
2 parents 6fd048c + 17d931f commit 42fd802

5 files changed

Lines changed: 18 additions & 17 deletions

File tree

.github/workflows/build_test_wheel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313

1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
with:
1818
submodules: recursive
1919

2020
- name: Set up Python (for cibuildwheel controller)
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: '3.11'
2424

@@ -61,12 +61,12 @@ jobs:
6161

6262
steps:
6363
- name: Checkout code
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v6
6565
with:
6666
submodules: recursive
6767

6868
- name: Set up Python (for cibuildwheel controller)
69-
uses: actions/setup-python@v5
69+
uses: actions/setup-python@v6
7070
with:
7171
python-version: '3.11'
7272

.github/workflows/build_wheel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313

1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
with:
1818
submodules: recursive
1919

2020
- name: Set up Python (for cibuildwheel controller)
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: '3.11'
2424

@@ -63,12 +63,12 @@ jobs:
6363

6464
steps:
6565
- name: Checkout code
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v6
6767
with:
6868
submodules: recursive
6969

7070
- name: Set up Python (for cibuildwheel controller)
71-
uses: actions/setup-python@v5
71+
uses: actions/setup-python@v6
7272
with:
7373
python-version: '3.11'
7474

.github/workflows/mac_arm64_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131

3232
steps:
3333
- name: Checkout code
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3535
with:
3636
submodules: recursive
3737

3838
- name: Set up Python
39-
uses: actions/setup-python@v5
39+
uses: actions/setup-python@v6
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
cache: 'pip'

.github/workflows/nightly_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
shell: bash
9292

9393
- name: Upload Coverage to Codecov
94-
uses: codecov/codecov-action@v4
94+
uses: codecov/codecov-action@v5
9595
with:
9696
files: ${{ env.CLEAN_WORKSPACE }}/proxima-zvec-filtered.lcov.info,${{ env.CLEAN_WORKSPACE }}/coverage.xml
9797
flags: python,cpp,nightly

.pre-commit-config.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
default_install_hook_types:
2+
- pre-commit
3+
- commit-msg
4+
15
repos:
26
- repo: https://github.com/astral-sh/ruff-pre-commit
37
rev: v0.14.4
@@ -31,14 +35,11 @@ repos:
3135

3236

3337
- repo: https://github.com/compilerla/conventional-pre-commit
34-
rev: v3.0.0
38+
rev: v4.3.0
3539
hooks:
3640
- id: conventional-pre-commit
37-
stages: [ commit-msg ]
38-
args: [
39-
--types, feat,fix,docs,style,refactor,test,chore,perf,ci,build,revert,
40-
--scope-optional
41-
]
41+
stages: [commit-msg]
42+
args: [--verbose]
4243

4344

4445
- repo: local

0 commit comments

Comments
 (0)