Skip to content

Commit 9a442f4

Browse files
ci: Remove setuptools step
Removal of `setuptools` install step due to bumped `node-gyp` version.
1 parent 955f5e9 commit 9a442f4

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

.github/workflows/build.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,11 @@ jobs:
2525
with:
2626
node-version: '20'
2727

28-
- uses: actions/setup-python@v5
28+
- name: Set up Python
29+
uses: actions/setup-python@v5
2930
with:
3031
python-version: '3.10'
3132

32-
- name: Install Python setup tools
33-
run: |
34-
pip install setuptools
35-
3633
- name: Install dependencies
3734
run: npm install
3835

.github/workflows/release.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- 'v*'
77

88
jobs:
9-
build:
9+
release:
1010
strategy:
1111
fail-fast: false
1212
matrix:
@@ -22,12 +22,10 @@ jobs:
2222
with:
2323
node-version: '20'
2424

25-
- uses: actions/setup-python@v5
25+
- name: Set up Python
26+
uses: actions/setup-python@v5
2627
with:
2728
python-version: '3.10'
28-
- name: Install Python setup tools
29-
run: |
30-
pip install setuptools
3129

3230
- name: Install dependencies
3331
run: npm install

0 commit comments

Comments
 (0)