File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,15 @@ clean:
14
14
15
15
install : build
16
16
17
+ offline :
18
+ pip install -e . --no-index --find-links ' .' --no-build-isolation
19
+
17
20
dist : FORCE
18
21
$(PYTHON ) -m build --sdist
19
22
23
+ wheel :
24
+ $(PYTHON ) -m maturin build -r
25
+
20
26
test : .PHONY
21
27
tox -e py310
22
28
cargo nextest run
@@ -32,11 +38,12 @@ include/sourmash.h: src/core/src/lib.rs \
32
38
src/core/src/ffi/nodegraph.rs \
33
39
src/core/src/ffi/index/mod.rs \
34
40
src/core/src/ffi/index/revindex.rs \
41
+ src/core/src/ffi/index/disk_revindex.rs \
35
42
src/core/src/ffi/storage.rs \
36
43
src/core/src/errors.rs \
37
44
src/core/cbindgen.toml
38
45
cd src/core && \
39
- RUSTC_BOOTSTRAP=1 cbindgen -c cbindgen.toml . -o ../../$@
46
+ RUSTC_BOOTSTRAP=1 cbindgen -c cbindgen.toml . -o ../../$@ -v
40
47
41
48
coverage : all
42
49
tox -e coverage
You can’t perform that action at this time.
0 commit comments