We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be4f0b7 commit 3bedb89Copy full SHA for 3bedb89
.github/workflows/build.yml
@@ -45,7 +45,7 @@ jobs:
45
steps:
46
- uses: actions/checkout@v3
47
- run: |
48
- make requirements
+ make ci_requirements
49
python -m build --no-isolation --sdist
50
- uses: actions/upload-artifact@v3
51
with:
Makefile
@@ -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
-
6
.PHONY: requirements
7
requirements:
8
python3 -m pip install uv
9
- python3 -m pip install -r requirements/development.txt
+ python3 -m uv pip install --no-isolation -r requirements/development.txt
10
11
.PHONY: check
12
check:
0 commit comments