Skip to content

Commit

Permalink
ci: Remove setuptools install (#146)
Browse files Browse the repository at this point in the history
* As recast-atlas is hatchling based now, setuptools isn't required.
  • Loading branch information
matthewfeickert committed Jun 16, 2024
1 parent 0fb609f commit 880b592
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# c.f. https://github.com/astral-sh/uv/issues/4333 for why snakemake lower bound
run: |
python -m pip install uv
uv pip install --system --upgrade pip setuptools wheel
uv pip install --system --upgrade pip wheel
uv pip install --system '.[develop,local,reana]' 'snakemake>6.8.0'
- name: List installed dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/head-of-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install uv
uv pip install --system --upgrade pip setuptools wheel
uv pip install --system --upgrade pip wheel
uv pip install --system --upgrade '.[develop,local,reana]'
uv pip install --system --upgrade --pre '.[local]'
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install uv
uv pip install --system --upgrade pip setuptools wheel
uv pip install --system --upgrade pip wheel
uv pip install --system --upgrade '.[develop,local,reana]'
uv pip uninstall --system adage
uv pip install --system --upgrade git+https://github.com/yadage/adage.git
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install uv
uv pip install --system --upgrade pip setuptools wheel
uv pip install --system --upgrade pip wheel
uv pip install --system --upgrade '.[develop,local,reana]'
uv pip uninstall --system packtivity
uv pip install --system --upgrade git+https://github.com/yadage/packtivity.git
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install uv
uv pip install --system --upgrade pip setuptools wheel
uv pip install --system --upgrade pip wheel
uv pip install --system --upgrade '.[develop,local,reana]'
uv pip uninstall --system yadage
uv pip install --system --upgrade git+https://github.com/yadage/yadage.git
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install build and twine
run: |
python -m pip install uv
uv pip install --system --upgrade pip setuptools wheel
uv pip install --system --upgrade pip wheel
uv pip install --system build twine
uv pip list --system
Expand Down

0 comments on commit 880b592

Please sign in to comment.