Skip to content

Commit e476778

Browse files
authored
fix: remove explicit installation of setuptools (#278)
1 parent a61df70 commit e476778

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/node-gyp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install Python dependencies
3434
run: |
3535
cd gyp-next
36-
python -m pip install --upgrade pip setuptools
36+
python -m pip install --upgrade pip
3737
pip install --editable .
3838
pip uninstall -y gyp-next
3939
- name: Install Node.js dependencies

.github/workflows/python_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: seanmiddleditch/gha-setup-ninja@v5
2727
- name: Install dependencies
2828
run: |
29-
python -m pip install --upgrade pip setuptools
29+
python -m pip install --upgrade pip
3030
pip install --editable ".[dev]"
3131
- run: ./gyp -V && ./gyp --version && gyp -V && gyp --version
3232
- name: Lint with ruff # See pyproject.toml for settings

docs/Hacking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ to make sure your changes aren't breaking anything important.
2424
You run the test driver with e.g.
2525

2626
``` sh
27-
$ python -m pip install --upgrade pip setuptools
27+
$ python -m pip install --upgrade pip
2828
$ pip install --editable ".[dev]"
2929
$ python -m pytest
3030
```

pylib/gyp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ def main(args):
696696
return 1
697697

698698

699-
# NOTE: setuptools generated console_scripts calls function with no arguments
699+
# NOTE: console_scripts calls this function with no arguments
700700
def script_main():
701701
return main(sys.argv[1:])
702702

0 commit comments

Comments
 (0)