Skip to content

Commit fb0aefc

Browse files
committed
Merge branch 'main' into remove-private-ffi-2
2 parents 9d6b56f + a13089b commit fb0aefc

File tree

324 files changed

+8005
-3670
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

324 files changed

+8005
-3670
lines changed

.github/ISSUE_TEMPLATE/blank_issue.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: 🐛 Bug Report
22
description: Create a bug report
3-
labels: [bug]
3+
type: Bug
44
body:
55
- type: markdown
66
attributes:
@@ -78,4 +78,4 @@ body:
7878
id: additional-info
7979
attributes:
8080
label: Additional Info
81-
description: Any additional info that you think might be useful or relevant to this bug
81+
description: Any additional info that you think might be useful or relevant to this bug
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
name: 💡 Feature request
33
about: Suggest an idea for this project
4-
labels: [enhancement]
4+
type: Feature
55
---
66

7-
<!--
7+
<!--
88
Thank you for sharing your idea!
99
1010
Please describe your idea in depth. If you're not sure what to write, imagine the following:
1111
- How is this important to you? How would you use it?
1212
- Can you think of any alternatives?
1313
- Do you have any ideas about how it can be implemented? Are you willing/able to implement it? Do you need mentoring?
14-
-->
14+
-->

.github/workflows/benches.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
benchmarks:
1818
runs-on: ubuntu-24.04
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6.0.1
2121
- uses: actions/setup-python@v6
2222
with:
23-
python-version: "3.13"
23+
python-version: "3.14"
2424
- uses: dtolnay/rust-toolchain@stable
2525
with:
2626
components: rust-src

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ${{ inputs.os }}
3333
if: ${{ !(startsWith(inputs.python-version, 'graalpy') && startsWith(inputs.os, 'windows')) }}
3434
steps:
35-
- uses: actions/checkout@v5
35+
- uses: actions/checkout@v6.0.1
3636
with:
3737
# For PRs, we need to run on the real PR head, not the resultant merge of the PR into the target branch.
3838
#

.github/workflows/changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
name: Check changelog entry
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6.0.1
1313
- uses: actions/setup-python@v6
1414
with:
15-
python-version: '3.13'
15+
python-version: '3.14'
1616
- run: python -m pip install --upgrade pip && pip install nox[uv]
1717
- run: nox -s check-changelog

.github/workflows/ci-cache-warmup.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
cross-compilation-windows:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6.0.1
1313
- uses: actions/setup-python@v6
1414
with:
15-
python-version: "3.13"
15+
python-version: "3.14"
1616
- uses: dtolnay/rust-toolchain@stable
1717
with:
1818
targets: x86_64-pc-windows-gnu,x86_64-pc-windows-msvc
1919
components: rust-src
20-
- uses: actions/cache/restore@v4
20+
- uses: actions/cache/restore@v5
2121
with:
2222
# https://github.com/PyO3/maturin/discussions/1953
2323
path: ~/.cache/cargo-xwin
@@ -28,7 +28,7 @@ jobs:
2828
sudo apt-get install -y mingw-w64 llvm
2929
pip install nox
3030
nox -s test-cross-compilation-windows
31-
- uses: actions/cache/save@v4
31+
- uses: actions/cache/save@v5
3232
with:
3333
path: ~/.cache/cargo-xwin
3434
key: cargo-xwin-cache

0 commit comments

Comments
 (0)