We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 179fc49 commit 1b59161Copy full SHA for 1b59161
1 file changed
Makefile
@@ -1,3 +1,19 @@
1
+all: wheels
2
+
3
wheels:
4
docker pull konstin2/maturin
5
docker run --rm -v $(shell pwd):/io konstin2/maturin build --release
6
7
+build:
8
+ cargo build --release
9
10
+env:
11
+ python -m venv env
12
+ . env/bin/activate; \
13
+ pip install .
14
15
+clean:
16
+ -rm -Rf env
17
18
+local:
19
+ cargo build --config 'patch.crates-io.stam.path="../stam-rust/"'
0 commit comments