Skip to content

Commit

Permalink
Try specific setuptools version
Browse files Browse the repository at this point in the history
  • Loading branch information
jmozmoz authored Jan 9, 2024
1 parent a065929 commit c497fda
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand All @@ -27,7 +27,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 tomli
python -m pip install flake8
python -m pip install -U setuptools>=61
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down

0 comments on commit c497fda

Please sign in to comment.