Skip to content

Commit

Permalink
unpin setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Wittgen committed Jan 10, 2023
1 parent 1081da9 commit ba16594
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "setup.cfg"

- name: Build and install
run: |
python -m pip install --upgrade pip "setuptools<65" "flake8<5"
python -m pip install --upgrade pip setuptools "flake8<5"
python -m pip install .[yaml,test]
- name: Run tests
Expand All @@ -48,13 +48,13 @@ jobs:
cache-dependency-path: "setup.cfg"

- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.8

- name: Install dependencies
run: |
pip install --upgrade "setuptools<65" wheel build
pip install --upgrade setuptools wheel build
- name: Build and create distribution
run: |
Expand Down Expand Up @@ -92,13 +92,13 @@ jobs:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.8

- name: Install dependencies
run: |
pip install --upgrade "setuptools<65" wheel cibuildwheel
pip install --upgrade setuptools wheel cibuildwheel
- name: Build and create distribution
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.8

- name: Update Python packages
run: pip install --upgrade "setuptools<65" "flake8<5"
run: pip install --upgrade setuptools "flake8<5"

- name: Install Python prereqs
run: |
Expand Down

0 comments on commit ba16594

Please sign in to comment.