We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pip
setuptools
1 parent a41353c commit 33144b0Copy full SHA for 33144b0
.github/workflows/tests.yml
@@ -48,9 +48,10 @@ jobs:
48
cache: 'pip'
49
cache-dependency-path: 'setup.py'
50
51
- - name: Install program
+ - name: Setup Project
52
run: |
53
- pip install --editable=.[test]
+ pip install pip 'setuptools>=64' --upgrade
54
+ pip install --editable='.[test]'
55
56
- name: Run tests
57
Makefile
@@ -21,6 +21,7 @@ $(eval isort := $(venvpath)/bin/isort)
21
# Setup Python virtualenv
22
setup-virtualenv:
23
@test -e $(python) || python3 -m venv $(venvpath)
24
+ @$(pip) install --upgrade setuptools
25
26
27
# -------
0 commit comments