Skip to content

Commit

Permalink
Continue debug - change distutils fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
s0600204 committed Jan 26, 2024
1 parent 1d1b5c8 commit 9581281
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions .github/workflows/lockfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# According to MSys2's list of known issues (https://www.msys2.org/docs/python/#known-issues),
# setuptools >= 60.0 is not compatible with MSys2 (or vice-versa).
# `SETUPTOOLS_USE_DISTUTILS=stdlib` is the recommended work-around.
SETUPTOOLS_USE_DISTUTILS: stdlib
SETUPTOOLS_USE_DISTUTILS: ${{ matrix.sys.distutils }}

defaults:
run:
Expand All @@ -34,12 +34,15 @@ jobs:
fail-fast: false
matrix:
sys:
#~ - os: windows-latest
#~ shell: msys2 {0}
#~ - os: ubuntu-latest
#~ shell: bash
- os: windows-latest
shell: msys2 {0}
distutils: stdlib
- os: ubuntu-latest
shell: bash
distutils: local
- os: macos-latest
shell: bash
distutils: local

poetVers:
- 1.7.1
Expand Down Expand Up @@ -81,12 +84,6 @@ jobs:
qt5-svg:p
rtmidi:p
- name: Add pip to $PATH
if: ${{ startsWith(matrix.sys.os, 'macos') }}
run: |
which -a pip3
which -a python3
- name: Update pip
run: |
python3 -m pip install -U pip
Expand All @@ -105,8 +102,6 @@ jobs:
- name: Install Poetry via pip
run: |
PATH=/Library/Frameworks/Python.framework/Versions/3.12/bin:${PATH}
export PATH
python3 -m pip install poetry==${{ matrix.poetVers }}
python3 -m pip list | grep poetry
Expand Down

0 comments on commit 9581281

Please sign in to comment.