Skip to content

Commit

Permalink
Don't use system python env
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Wittgen authored and Matthias Wittgen committed Jan 4, 2025
1 parent 1fa9141 commit 1925c60
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,10 @@ jobs:
- name: Build and install
run: |
python -m pip install --upgrade pip setuptools uv
uv venv
uv pip install pytest
uv pip install .[yaml,test]
uv pip install --system .[yaml,test]
- name: Run tests
run: uv run pytest -r a -v
run: pytest -r a -v

pypi_sdist_build:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@

setup(
cmake_source_dir=".",
cmake_install_dir=".",
)

0 comments on commit 1925c60

Please sign in to comment.