Skip to content

Commit 33144b0

Browse files
committed
Python 3.12: Update pip and setuptools
1 parent a41353c commit 33144b0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@ jobs:
4848
cache: 'pip'
4949
cache-dependency-path: 'setup.py'
5050

51-
- name: Install program
51+
- name: Setup Project
5252
run: |
53-
pip install --editable=.[test]
53+
pip install pip 'setuptools>=64' --upgrade
54+
pip install --editable='.[test]'
5455
5556
- name: Run tests
5657
run: |

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ $(eval isort := $(venvpath)/bin/isort)
2121
# Setup Python virtualenv
2222
setup-virtualenv:
2323
@test -e $(python) || python3 -m venv $(venvpath)
24+
@$(pip) install --upgrade setuptools
2425

2526

2627
# -------

0 commit comments

Comments
 (0)