Skip to content

Commit 573d8d6

Browse files
authored
Merge pull request #30 from python-project-templates/tkp/rustnocibw
Small rust tweaks/improvements
2 parents 37ad578 + f890aad commit 573d8d6

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

rust/.github/dependabot.yml

+9
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,12 @@ updates:
1414
labels:
1515
- "lang: python"
1616
- "part: dependencies"
17+
18+
- package-ecosystem: "cargo"
19+
directory: "/"
20+
schedule:
21+
interval: "monthly"
22+
labels:
23+
- "lang: rust"
24+
- "part: dependencies"
25+

rust/.github/workflows/build.yml.jinja

+2
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ jobs:
117117
run: |
118118
make dist-py-wheel
119119
make dist-check
120+
env:
121+
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=11.0
120122
if: matrix.os != 'ubuntu-latest'
121123

122124
- uses: actions/upload-artifact@v4

rust/pyproject.toml.jinja

+1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ archs = "x86_64"
9696
9797
[tool.cibuildwheel.macos]
9898
archs = "x86_64 arm64"
99+
environment = {MACOS_DEPLOYMENT_TARGET=11.0}
99100
100101
[tool.cibuildwheel.windows]
101102
environment = {PATH="$UserProfile\\.cargo\bin;$PATH"}

0 commit comments

Comments
 (0)