We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abb2946 commit d500b58Copy full SHA for d500b58
.github/workflows/build.yml
@@ -30,6 +30,10 @@ jobs:
30
python -m pip install --upgrade pip
31
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
32
33
+ - name: Update setuptools
34
+ run: |
35
+ python -m pip install --upgrade setuptools
36
+
37
- name: Install library
38
run: pip install .
39
.github/workflows/release.yml
@@ -18,6 +18,9 @@ jobs:
18
uses: actions/setup-python@v1
19
with:
20
python-version: '3.x'
21
22
23
24
- name: Install dependencies
25
if: contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml')
26
run: |
0 commit comments