Skip to content

Commit 3bedb89

Browse files
committed
Try --no-isolation
1 parent be4f0b7 commit 3bedb89

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
steps:
4646
- uses: actions/checkout@v3
4747
- run: |
48-
make requirements
48+
make ci_requirements
4949
python -m build --no-isolation --sdist
5050
- uses: actions/upload-artifact@v3
5151
with:

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
.PHONY: ci_requirements
2-
ci_requirements:
3-
python3 -m pip install uv
4-
python3 -m uv pip install --break-system-packages -r requirements/development.txt
5-
61
.PHONY: requirements
72
requirements:
83
python3 -m pip install uv
9-
python3 -m pip install -r requirements/development.txt
4+
python3 -m uv pip install --no-isolation -r requirements/development.txt
105

116
.PHONY: check
127
check:

0 commit comments

Comments
 (0)