Skip to content

Commit a8bb467

Browse files
committed
Use --system for GHA
1 parent 1fc670a commit a8bb467

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ${{ matrix.os }}
3030
steps:
3131
- uses: actions/checkout@v3
32-
- run: make requirements
32+
- run: make ci_requirements
3333
- name: Set up QEMU # Needed to build aarch64 wheels
3434
if: runner.os == 'Linux'
3535
uses: docker/setup-qemu-action@v2

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
.PHONY: requirements
2+
ci_requirements:
3+
python3 -m pip install uv
4+
python3 -m uv pip install --system -r requirements/development.txt
5+
16
.PHONY: requirements
27
requirements:
38
python3 -m pip install uv
4-
uv pip install -r requirements/development.txt
9+
python3 -m pip install -r requirements/development.txt
510

611
.PHONY: check
712
check:

0 commit comments

Comments
 (0)