-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔀 Merge branch
main
into python-interface
- Loading branch information
Showing
172 changed files
with
12,470 additions
and
3,203 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
{ | ||
$schema: "https://docs.renovatebot.com/renovate-schema.json", | ||
extends: [ | ||
"config:recommended", | ||
":gitSignOff" | ||
], | ||
prHourlyLimit: 10, | ||
enabledManagers: [ | ||
"git-submodules", | ||
"github-actions", | ||
"pre-commit", | ||
"pep621", | ||
"pip_requirements", | ||
"dockerfile", | ||
], | ||
"git-submodules": { | ||
"enabled": true | ||
}, | ||
"pre-commit": { | ||
enabled: true | ||
}, | ||
lockFileMaintenance: { | ||
"enabled": true | ||
// "automerge": true, disabled due to endless update loops caused by setuptools_scm | ||
}, | ||
configMigration: true, | ||
schedule: [ | ||
"every weekend" | ||
], | ||
packageRules: [ | ||
{ | ||
matchManagers: [ | ||
"git-submodules" | ||
], | ||
addLabels: [ | ||
"dependencies", | ||
"submodules" | ||
], | ||
commitMessagePrefix: "⬆\uFE0F\uD83D\uDC68\u200D\uD83D\uDCBB", | ||
"groupName": "Submodules", | ||
}, | ||
{ | ||
matchManagers: [ | ||
"github-actions" | ||
], | ||
addLabels: [ | ||
"github_actions" | ||
], | ||
commitMessagePrefix: "⬆\uFE0F\uD83D\uDC68\u200D\uD83D\uDCBB", | ||
"groupName": "GitHub Actions", | ||
}, | ||
{ | ||
matchManagers: [ | ||
"pre-commit" | ||
], | ||
addLabels: [ | ||
"pre-commit" | ||
], | ||
commitMessagePrefix: "⬆\uFE0F\uD83E\uDE9D", | ||
"groupName": "Pre-Commit Hooks", | ||
}, | ||
{ | ||
matchManagers: [ | ||
"pep621" | ||
], | ||
addLabels: [ | ||
"dependencies", | ||
"python" | ||
], | ||
commitMessagePrefix: "⬆\uFE0F\uD83D\uDC0D", | ||
"groupName": "Python Dependencies", | ||
}, | ||
{ | ||
matchManagers: [ | ||
"pip_requirements" | ||
], | ||
addLabels: [ | ||
"dependencies", | ||
"python" | ||
], | ||
commitMessagePrefix: "⬆\uFE0F\uD83D\uDC0D", | ||
"groupName": "Python Dependencies", | ||
}, | ||
{ | ||
matchManagers: [ | ||
"dockerfile" | ||
], | ||
addLabels: [ | ||
"docker" | ||
], | ||
commitMessagePrefix: "⬆\uD83D\uDC0B", | ||
"groupName": "Dockerfile", | ||
}, | ||
{ | ||
"description": "Automerge patch updates", | ||
"matchUpdateTypes": [ | ||
"patch" | ||
], | ||
"automerge": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,7 @@ jobs: | |
fetch-depth: 0 | ||
|
||
- name: Install the latest version of uv | ||
uses: astral-sh/setup-uv@v4 | ||
uses: astral-sh/setup-uv@v5 | ||
with: | ||
version: "latest" | ||
enable-cache: true | ||
|
@@ -83,7 +83,8 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
runs-on: [ubuntu-latest, macos-13, macos-14, windows-latest] | ||
runs-on: | ||
[ubuntu-24.04, ubuntu-24.04-arm, macos-13, macos-14, windows-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -95,9 +96,10 @@ jobs: | |
uses: ilammy/msvc-dev-cmd@v1 | ||
|
||
- name: Setup ccache | ||
if: matrix.runs-on != 'ubuntu-24.04-arm' | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: "${{matrix.config.os}}-pyfiction" | ||
key: "${{matrix.runs-on}}-pyfiction" | ||
save: true | ||
max-size: 10G | ||
|
||
|
@@ -113,7 +115,7 @@ jobs: | |
uses: rui314/setup-mold@v1 | ||
|
||
- name: Install the latest version of uv | ||
uses: astral-sh/setup-uv@v4 | ||
uses: astral-sh/setup-uv@v5 | ||
with: | ||
version: "latest" | ||
enable-cache: true | ||
|
@@ -124,7 +126,7 @@ jobs: | |
- name: Upload wheel as an artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: cibw-wheels-${{ matrix.config.os }}-${{ matrix.config.arch }}-${{ matrix.python }} | ||
name: cibw-wheels-${{ matrix.runs-on }} | ||
path: ./wheelhouse/*.whl | ||
overwrite: true | ||
|
||
|
@@ -142,7 +144,7 @@ jobs: | |
merge-multiple: true | ||
|
||
- name: Generate artifact attestation for sdist and wheel(s) | ||
uses: actions/attest-build-provenance@v1 | ||
uses: actions/attest-build-provenance@v2 | ||
with: | ||
subject-path: "dist/*" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.