Skip to content

Commit

Permalink
ci(unit test): Fix missing setuptools for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
julienloizelet committed Feb 8, 2024
1 parent 1b906c5 commit 2e22e90
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install setuptools
if: contains(fromJson('["3.12"]'),matrix.python-version)
run: |
python -m pip install --upgrade pip setuptools wheel
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 2e22e90

Please sign in to comment.