Skip to content

Commit 6063538

Browse files
committed
Changed uv install method
1 parent 53e3c48 commit 6063538

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
sudo apt-get install mupdf-tools
4646
sudo apt-get install ghostscript
4747
- name: Install Python package
48-
run: uv tool install .[dev]
48+
run: uv pip install .[dev]
4949
- name: Download, extract, and compile XFOIL
5050
run: |
5151
curl -o xfoil6.99.tgz "https://web.mit.edu/drela/Public/web/xfoil/xfoil6.99.tgz"
@@ -69,4 +69,4 @@ jobs:
6969
- name: Run tests
7070
run: |
7171
export PATH="/home/runner/work/pymead/pymead/Xfoil:$PATH"
72-
uv run pytest -s pymead/tests
72+
pytest -s pymead/tests

.github/workflows/standalone-exe.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install uv
3131
run: pip install uv
3232
- name: Install pymead
33-
run: uv tool install .
33+
run: uv pip install .
3434
- name: Generate executable
3535
run: |
3636
cd install

0 commit comments

Comments
 (0)