We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 854ecac commit ee08bc4Copy full SHA for ee08bc4
2 files changed
justfile
@@ -6,7 +6,7 @@ prelude:
6
pip3 install virtualenv
7
virtualenv .env
8
if test -d .env/bin/; then source .env/bin/activate; else source .env/Scripts/activate; fi
9
- pip3 install maturin pytest pytest-benchmark twine pdoc
+ pip3 install maturin==0.12.20 pytest pytest-benchmark twine pdoc
10
11
which maturin
12
maturin --version
packages/api/README.md
@@ -266,6 +266,9 @@ $ python examples/appendices/simple.py
266
267
## Testing
268
269
+To build all tests you'll need LLVM 12.0 in your system. We recommend either installing prepackaged
270
+libraries with [llvm.sh](https://apt.llvm.org/llvm.sh) or building it yourself with [llvmenv](https://crates.io/crates/llvmenv).
271
+
272
Build all the packages and run the tests:
273
274
```sh
0 commit comments