Skip to content

Commit

Permalink
chore(actions): pin setuptools 70
Browse files Browse the repository at this point in the history
Pin `setuptools` to the maximum version of 70 to allow working on Ubuntu
20.04 LTS based environments. (New versions of `setuptools` are not
compatible.)

Note that this fix is necessary only for the `maint-0.9` branches and
the REANA 0.9 release series. In `master` we have switched to Ubuntu
24.04 LTS based environments and Python 3.12 and no pinning is necessary
there.
  • Loading branch information
tiborsimko committed Sep 2, 2024
1 parent 334ac35 commit c040f76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
- name: Install Python dependencies
run: |
pip install --upgrade pip setuptools py
pip install --upgrade pip 'setuptools<71' py
pip install -e .[all]
- name: Run Sphinx documentation with doctests
Expand All @@ -156,7 +156,7 @@ jobs:

- name: Install Python dependencies
run: |
pip install --upgrade pip setuptools py
pip install --upgrade pip 'setuptools<71' py
pip install twine wheel
pip install -e .[all]
Expand Down

0 comments on commit c040f76

Please sign in to comment.