Skip to content

Commit 0bcc5d4

Browse files
committed
Setup wheel publishing
1 parent a6c079c commit 0bcc5d4

File tree

5 files changed

+84
-28
lines changed

5 files changed

+84
-28
lines changed

.copier-answers.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Changes here will be overwritten by Copier
2-
_commit: f8b63c7
2+
_commit: b2610ba
33
_src_path: .
44
add_extension: rust
55
66
github: python-project-templates
77
project_description: A Rust-Python project template
88
project_name: rust template
9-
python_version_primary: '3.11'
9+
python_version_primary: '3.9'
1010
team: Python Project Template Authors

.github/workflows/build.yml

+31-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
name: Build Status
32

43
on:
@@ -31,7 +30,7 @@ jobs:
3130
strategy:
3231
matrix:
3332
os: [ubuntu-latest, macos-latest, windows-latest]
34-
python-version: ["3.11"]
33+
python-version: ["3.9"]
3534

3635
steps:
3736
- uses: actions/checkout@v4
@@ -49,12 +48,26 @@ jobs:
4948
toolchain: stable
5049
components: clippy, rustfmt
5150

51+
- name: Setup Rust cache
52+
uses: Swatinem/rust-cache@v2
53+
with:
54+
key: ${{ matrix.os }}
55+
56+
- name: Setup rust targets (MacOS)
57+
run: rustup target add aarch64-apple-darwin
58+
if: matrix.os == 'macos-latest'
59+
60+
- name: Setup rust targets (Windows)
61+
run: |
62+
rustup toolchain install stable-i686-pc-windows-msvc
63+
rustup target add i686-pc-windows-msvc
64+
if: matrix.os == 'windows-latest'
65+
5266
- name: Install dependencies
5367
run: make develop
5468

5569
- name: Lint
5670
run: make lint
57-
if: ${{ matrix.os == 'ubuntu-latest' }}
5871

5972
- name: Checks
6073
run: make checks
@@ -65,7 +78,6 @@ jobs:
6578

6679
- name: Test
6780
run: make coverage
68-
if: ${{ matrix.os == 'ubuntu-latest' }}
6981

7082
- name: Upload test results (Python)
7183
uses: actions/upload-artifact@v4
@@ -85,6 +97,20 @@ jobs:
8597
uses: codecov/codecov-action@v4
8698

8799
- name: Make dist
88-
run: make dist
100+
run: |
101+
dist-rust
102+
dist-py-sdist
103+
dist-py-wheel
104+
dist-check
89105
if: ${{ matrix.os == 'ubuntu-latest' }}
90106

107+
- name: Make dist
108+
run: |
109+
dist-py-wheel
110+
dist-check
111+
if: ${{ matrix.os != 'ubuntu-latest' }}
112+
113+
- uses: actions/upload-artifact@v4
114+
with:
115+
name: wheels
116+
path: dist

Cargo.lock

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

+18-9
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ develop-rust:
1010

1111
develop: develop-rust develop-py ## setup project for development
1212

13-
.PHONY: build-py build-rust build
13+
.PHONY: build-py build-rust build dev
1414
build-py:
1515
maturin build
1616

@@ -41,10 +41,11 @@ lint-py: ## run python linter with ruff
4141
python -m ruff check rust_template
4242
python -m ruff format --check rust_template
4343

44-
lint-rust: ## run the rust linter
44+
lint-rust: ## run rust linter
4545
make -C rust lint
4646

4747
lint: lint-rust lint-py ## run project linters
48+
4849
# alias
4950
lints: lint
5051

@@ -57,6 +58,7 @@ fix-rust: ## fix rust formatting
5758
make -C rust fix
5859

5960
fix: fix-rust fix-py ## run project autoformatters
61+
6062
# alias
6163
format: fix
6264

@@ -79,26 +81,30 @@ annotate: ## run python type annotation checks with mypy
7981
#########
8082
# TESTS #
8183
#########
82-
.PHONY: test test-py coverage-py tests
83-
84+
.PHONY: test-py tests-py coverage-py
8485
test-py: ## run python tests
8586
python -m pytest -v rust_template/tests --junitxml=junit.xml
87+
8688
# alias
8789
tests-py: test-py
8890

8991
coverage-py: ## run python tests and collect test coverage
9092
python -m pytest -v rust_template/tests --junitxml=junit.xml --cov=rust_template --cov-branch --cov-fail-under=50 --cov-report term-missing --cov-report xml
9193

94+
.PHONY: test-rust tests-rust coverage-rust
9295
test-rust: ## run rust tests
9396
make -C rust test
97+
9498
# alias
9599
tests-rust: test-rust
96100

97101
coverage-rust: ## run rust tests and collect test coverage
98102
make -C rust coverage
99103

104+
.PHONY: test coverage tests
100105
test: test-py test-rust ## run all tests
101106
coverage: coverage-py coverage-rust ## run all tests and collect test coverage
107+
102108
# alias
103109
tests: test
104110

@@ -122,18 +128,21 @@ major: ## bump a major version
122128
########
123129
# DIST #
124130
########
125-
.PHONY: dist dist-build dist-sdist dist-local-wheel publish
131+
.PHONY: dist-py-wheel dist-py-sdist dist-rust dist-check dist publish
132+
133+
dist-py-wheel: # build python wheel
134+
python -m cibuildwheel --output-dir dist
126135

127-
dist-build-py: # build python dists
128-
python -m build -w -s
136+
dist-py-sdist: # build python sdist
137+
python -m build --sdist -o dist
129138

130-
dist-build-rust: # build rust dists
139+
dist-rust: # build rust dists
131140
make -C rust dist
132141

133142
dist-check: ## run python dist checker with twine
134143
python -m twine check dist/*
135144

136-
dist: clean build dist-build-rust dist-build-py dist-check ## build all dists
145+
dist: clean build dist-rust dist-py-wheel dist-py-sdist dist-check ## build all dists
137146

138147
publish: dist # publish python assets
139148

pyproject.toml

+21
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ develop = [
3636
"build",
3737
"bump-my-version",
3838
"check-manifest",
39+
"cibuildwheel",
3940
"maturin>=1,<2",
4041
"pytest",
4142
"pytest-cov",
@@ -80,6 +81,26 @@ ignore = [
8081
"rust/README.md",
8182
]
8283

84+
[tool.cibuildwheel]
85+
before-build = "rustup show"
86+
build = "cp39-*"
87+
test-command = "pytest -vvv rust_template/tests"
88+
test-requires = ["pytest", "pytest-cov", "pytest-sugar", "pytest-xdist"]
89+
90+
[tool.cibuildwheel.linux]
91+
before-build = "curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=stable --profile=minimal -y && rustup show"
92+
environment = {PATH="$HOME/.cargo/bin:$PATH", CARGO_TERM_COLOR="always"}
93+
skip = "*i686 musllinux*"
94+
manylinux-x86_64-image = "manylinux_2_28"
95+
96+
[tool.cibuildwheel.macos]
97+
archs = "arm64"
98+
99+
[tool.cibuildwheel.windows]
100+
environment = {PATH="$UserProfile\\.cargo\bin;$PATH"}
101+
archs = "AMD64 *win32"
102+
skip = "*arm_64"
103+
83104
[tool.pytest.ini_options]
84105
asyncio_mode = "strict"
85106
testpaths = "rust_template/tests"

0 commit comments

Comments
 (0)