Skip to content

Commit

Permalink
setup.py deprecation workaround with --use-pep517 (#1168)
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc authored Jul 18, 2024
1 parent e30adb4 commit 313a70b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
sudo apt-get install libdbus-1-dev
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
Expand All @@ -98,25 +98,25 @@ jobs:
- name: Install project dependencies (Baseline)
run: |
pip install wheel
pip install -r requirements.txt -r dev-requirements.txt
pip install --use-pep517 wheel
pip install --use-pep517 -r requirements.txt -r dev-requirements.txt
- name: Install project dependencies (All plugins)
if: matrix.bare != true
run: |
pip install -r all-plugin-requirements.txt
pip install --use-pep517 -r all-plugin-requirements.txt
- name: Install project dependencies (Windows)
if: runner.os == 'Windows'
run: |
pip install -r win-requirements.txt || true
pip install --use-pep517 -r win-requirements.txt || true
# Install package in editable mode,
# and run project-specific tasks.
- name: Setup project
run: |
python -m pip install --upgrade pip setuptools wheel
pip install --editable=.
pip install --use-pep517 --editable=.
python setup.py compile_catalog
# For saving resources, code style checking is
Expand Down

0 comments on commit 313a70b

Please sign in to comment.