Skip to content

Commit b19bed8

Browse files
authored
Fix broken workflows (#288)
1 parent c01c308 commit b19bed8

6 files changed

+8
-8
lines changed

.github/workflows/publish-develop-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
python-version: 3.x
2020
- name: Install dependencies
21-
run: pip install --upgrade pip hatch uv
21+
run: pip install hatch
2222
- name: Configure Git
2323
run: |
2424
git config user.name github-actions

.github/workflows/publish-latest-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
python-version: 3.x
2020
- name: Install dependencies
21-
run: pip install --upgrade pip hatch uv
21+
run: pip install hatch
2222
- name: Configure Git
2323
run: |
2424
git config user.name github-actions

.github/workflows/publish-python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
python-version: "3.x"
1919
- name: Install dependencies
20-
run: pip install --upgrade pip hatch uv
20+
run: pip install hatch
2121
- name: Build Package
2222
run: hatch build --clean
2323
- name: Publish to PyPI

.github/workflows/test-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
python-version: 3.x
2424
- name: Install Python Dependencies
25-
run: pip install --upgrade pip hatch uv
25+
run: pip install hatch
2626
# DISABLED DUE TO DJANGO DOCS CONSTANTLY THROWING 429 ERRORS
2727
# - name: Check documentation links
2828
# run: hatch run docs:linkcheck

.github/workflows/test-javascript.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
with:
2121
python-version: 3.x
2222
- name: Install Python Dependencies
23-
run: pip install --upgrade pip hatch uv
23+
run: pip install hatch
2424
- name: Run Tests
2525
run: hatch run javascript:check

.github/workflows/test-python.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
- name: Install Python Dependencies
31-
run: pip install --upgrade pip hatch uv
31+
run: pip install hatch
3232
- name: Run Single DB Tests
3333
run: hatch test --python ${{ matrix.python-version }} --ds=test_app.settings_${{matrix.settings-module}} -v
3434

@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
python-version: 3.x
4545
- name: Install Python Dependencies
46-
run: pip install --upgrade pip hatch uv
46+
run: pip install hatch
4747
- name: Check Python formatting
4848
run: hatch fmt src tests --check
4949

@@ -58,6 +58,6 @@ jobs:
5858
with:
5959
python-version: 3.x
6060
- name: Install Python Dependencies
61-
run: pip install --upgrade pip hatch uv
61+
run: pip install hatch
6262
- name: Run Python type checker
6363
run: hatch run python:type_check

0 commit comments

Comments
 (0)