Skip to content

Commit

Permalink
ci(python): try to fix python 3.10 install
Browse files Browse the repository at this point in the history
Signed-off-by: Jérémie Drouet <[email protected]>
  • Loading branch information
jdrouet committed Dec 26, 2024
1 parent f4be79d commit bc9a6e7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/mrml-python-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,15 @@ jobs:
toolchain: stable
profile: minimal

- name: install maturin
run: cargo install maturin --locked

- name: init python venv
run: |
python3 -m pip install --upgrade pip
pip install --upgrade pip
python3 -m venv env
source env/bin/activate
python3 -m pip install pytest maturin
python3 -m pip install pytest
maturin develop
python3 -m pytest
working-directory: packages/mrml-python

0 comments on commit bc9a6e7

Please sign in to comment.