Skip to content

Commit 1f1e2c2

Browse files
peterdragunradimkarnis
authored andcommitted
ci: fix github actions for dev release
1 parent 92143ed commit 1f1e2c2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/dev_release_esptool_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
python -m pip install twine setuptools
26+
python -m pip install twine 'setuptools>=64'
2727
2828
- name: Create development release ${{ github.ref_name }}
2929
env:

.github/workflows/release_esptool_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
pip install setuptools twine
23+
pip install 'setuptools>=64' twine
2424
- name: Build and upload esptool ${{ github.event.release.tag_name }}
2525
env:
2626
TWINE_USERNAME: __token__

.github/workflows/test_esptool.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
25-
pip install setuptools
25+
pip install 'setuptools>=64'
2626
2727
- name: SoftHSM2 setup
2828
run: |

0 commit comments

Comments
 (0)