forked from DetachHead/basedpyright
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: switch from nodejs-bin to nodejs-wheel
Wider support for older glibc Fixes DetachHead#167
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ dev = [ | |
"pylint>=3.0.0a7", | ||
"ruff>=0.2.2", | ||
# required for running node/npm commands for local development if node is not installed globally: | ||
"nodejs-bin[cmd]>=18.4.0a4", | ||
"nodejs-wheel>=20.12.2", | ||
] | ||
|
||
[tool.pdm.version] | ||
|
@@ -32,8 +32,8 @@ authors = [ | |
{ name = "detachhead", email = "[email protected]" }, | ||
] | ||
dependencies = [ | ||
# required by the basedpyright cli & langserver wrapper scripts, the cmd extra is not needed downstream tho | ||
"nodejs-bin>=18.4.0a4", | ||
# required by the basedpyright cli & langserver wrapper scripts | ||
"nodejs-wheel>=20.12.2", | ||
] | ||
requires-python = ">=3.8" | ||
readme = "README.md" | ||
|
@@ -50,7 +50,7 @@ basedpyright-langserver = 'basedpyright.langserver:main' | |
requires = [ | ||
"pdm-backend", | ||
# required when building because some transient dependencies call node/npm scripts relying on it being in the PATH | ||
"nodejs-bin[cmd]>=18.4.0a4", | ||
"nodejs-wheel>=20.12.2", | ||
] | ||
build-backend = "pdm.backend" | ||
|
||
|