Skip to content

Commit

Permalink
Fix wheel version verification (rerun-io#5938)
Browse files Browse the repository at this point in the history
### What
It broke in rerun-io#5932

### Checklist
* [x] I have read and agree to [Contributor
Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and
the [Code of
Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md)

- [PR Build Summary](https://build.rerun.io/pr/{{ pr.number }})
- [Recent benchmark results](https://build.rerun.io/graphs/crates.html)
- [Wasm size tracking](https://build.rerun.io/graphs/sizes.html)
  • Loading branch information
emilk authored Apr 12, 2024
1 parent 78d46da commit fa1202c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/contrib_rerun_py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ jobs:
- name: Verify built wheel version
shell: bash
run: |
python3 -m rerun --version
which rerun
rerun --version
pixi run -e wheel-test python -m rerun --version
pixi run -e wheel-test which rerun
pixi run -e wheel-test rerun --version
- name: Run Python unit-tests
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reusable_build_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ jobs:
- name: Verify built wheel version
shell: bash
run: |
pixi run python3 -m rerun --version
pixi run which rerun
pixi run rerun --version
pixi run -e wheel-test python -m rerun --version
pixi run -e wheel-test which rerun
pixi run -e wheel-test rerun --version
- name: Get sha
id: get-sha
Expand Down

0 comments on commit fa1202c

Please sign in to comment.