Skip to content

Commit

Permalink
ci: Remove setuptools step
Browse files Browse the repository at this point in the history
Removal of `setuptools` install step due to bumped `node-gyp` version.
  • Loading branch information
garrettsummerfi3ld committed Jul 7, 2024
1 parent 955f5e9 commit 9a442f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,11 @@ jobs:
with:
node-version: '20'

- uses: actions/setup-python@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install Python setup tools
run: |
pip install setuptools
- name: Install dependencies
run: npm install

Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'v*'

jobs:
build:
release:
strategy:
fail-fast: false
matrix:
Expand All @@ -22,12 +22,10 @@ jobs:
with:
node-version: '20'

- uses: actions/setup-python@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Python setup tools
run: |
pip install setuptools

- name: Install dependencies
run: npm install
Expand Down

0 comments on commit 9a442f4

Please sign in to comment.