Skip to content

Commit

Permalink
pip install setuptools in an additional place
Browse files Browse the repository at this point in the history
(missing from the last commit)

setuptools is no longer pre-installed in Python 3.12 virtual
environments.
https://docs.python.org/3.12/whatsnew/3.12.html
python/cpython#95299
  • Loading branch information
dstein64 committed Oct 6, 2023
1 parent 5454542 commit bb1d367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Dependencies
run: python -m pip install --upgrade pip wheel
run: python -m pip install --upgrade pip setuptools wheel

- name: Build
run: python setup.py bdist_wheel
Expand Down

0 comments on commit bb1d367

Please sign in to comment.