diff --git a/.github/workflows/publish-develop-docs.yml b/.github/workflows/publish-develop-docs.yml index 00172d4f..43d114af 100644 --- a/.github/workflows/publish-develop-docs.yml +++ b/.github/workflows/publish-develop-docs.yml @@ -18,7 +18,7 @@ jobs: with: python-version: 3.x - name: Install dependencies - run: pip install --upgrade pip hatch uv + run: pip install hatch - name: Configure Git run: | git config user.name github-actions diff --git a/.github/workflows/publish-latest-docs.yml b/.github/workflows/publish-latest-docs.yml index 41ced54d..a4945b6f 100644 --- a/.github/workflows/publish-latest-docs.yml +++ b/.github/workflows/publish-latest-docs.yml @@ -18,7 +18,7 @@ jobs: with: python-version: 3.x - name: Install dependencies - run: pip install --upgrade pip hatch uv + run: pip install hatch - name: Configure Git run: | git config user.name github-actions diff --git a/.github/workflows/publish-python.yml b/.github/workflows/publish-python.yml index 93fbc969..e20affbb 100644 --- a/.github/workflows/publish-python.yml +++ b/.github/workflows/publish-python.yml @@ -17,7 +17,7 @@ jobs: with: python-version: "3.x" - name: Install dependencies - run: pip install --upgrade pip hatch uv + run: pip install hatch - name: Build Package run: hatch build --clean - name: Publish to PyPI diff --git a/.github/workflows/test-docs.yml b/.github/workflows/test-docs.yml index 0babadbc..5a2d4fd4 100644 --- a/.github/workflows/test-docs.yml +++ b/.github/workflows/test-docs.yml @@ -22,7 +22,7 @@ jobs: with: python-version: 3.x - name: Install Python Dependencies - run: pip install --upgrade pip hatch uv + run: pip install hatch # DISABLED DUE TO DJANGO DOCS CONSTANTLY THROWING 429 ERRORS # - name: Check documentation links # run: hatch run docs:linkcheck diff --git a/.github/workflows/test-javascript.yml b/.github/workflows/test-javascript.yml index d5b9db1d..8e204dcb 100644 --- a/.github/workflows/test-javascript.yml +++ b/.github/workflows/test-javascript.yml @@ -20,6 +20,6 @@ jobs: with: python-version: 3.x - name: Install Python Dependencies - run: pip install --upgrade pip hatch uv + run: pip install hatch - name: Run Tests run: hatch run javascript:check diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index 92f45852..ac8d77b6 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -28,7 +28,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install Python Dependencies - run: pip install --upgrade pip hatch uv + run: pip install hatch - name: Run Single DB Tests run: hatch test --python ${{ matrix.python-version }} --ds=test_app.settings_${{matrix.settings-module}} -v @@ -43,7 +43,7 @@ jobs: with: python-version: 3.x - name: Install Python Dependencies - run: pip install --upgrade pip hatch uv + run: pip install hatch - name: Check Python formatting run: hatch fmt src tests --check @@ -58,6 +58,6 @@ jobs: with: python-version: 3.x - name: Install Python Dependencies - run: pip install --upgrade pip hatch uv + run: pip install hatch - name: Run Python type checker run: hatch run python:type_check