diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 25d6c197a..1ef2d183f 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -166,8 +166,10 @@ jobs: githubToken: ${{ github.token }} install: | apk add py3-pip - pip3 install -U pip run: | + python3 -m venv ./venv + . ./venv/bin/activate + pip3 install -U pip pip3 install bluerobotics_navigator --no-index --find-links dist/ --force-reinstall - name: Upload wheels uses: actions/upload-artifact@v3 diff --git a/Cargo.toml b/Cargo.toml index 7e4bbce38..d32fc2434 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ crate-type = ["cdylib"] cpy-binder = "1.0" libc = "0.2" pyo3 = { version = "0.18", features = ["extension-module", "abi3-py39"], optional = true } -navigator-rs = { version = "0.3.0" } +navigator-rs = { version = "=0.3.0" } rand = "0.8" lazy_static = "1.4.0"