We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42fe14e commit 4ffae83Copy full SHA for 4ffae83
Makefile
@@ -2,8 +2,9 @@
2
3
# Start from clean env: Delete `.venv`, then `python3 -m venv .venv`
4
# Pre-requisite: Python virtual environment is active (source .venv/bin/activate)
5
-build-python: release
6
- python3 -m venv .venv
7
- source .venv/bin/activate
8
- python3 -m pip install -r requirements.txt
9
- maturin develop
+build-python:
+ python3 -m venv .venv
+ python3 -m pip uninstall maturin
+ python3 -m pip uninstall uniffi
+ python3 -m pip install -r requirements.txt
10
+ maturin develop
0 commit comments