Skip to content

Commit 92d65af

Browse files
Update nox and pipelines
1 parent 0203bc8 commit 92d65af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import nox # pylint: disable=import-error
1414

1515

16-
def _install_bundle(session: nox.Session) -> None:
16+
def _install_bundle(session: nox.Session, version="latest") -> None:
1717
session.install(
1818
"-t",
1919
"./bundled/libs",
@@ -26,7 +26,7 @@ def _install_bundle(session: nox.Session) -> None:
2626
"./requirements.txt",
2727
)
2828
session.install("packaging")
29-
_install_package(f"{os.getcwd()}/bundled/libs", "debugpy", "1.5.1")
29+
_install_package(f"{os.getcwd()}/bundled/libs", "debugpy", version)
3030

3131

3232
def _update_pip_packages(session: nox.Session) -> None:

0 commit comments

Comments
 (0)