Skip to content

Commit 3aecbaf

Browse files
authored
Fix python publishing workflow (#37)
1 parent 80a48f0 commit 3aecbaf

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

Diff for: noxfile.py

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def test_style(session: Session) -> None:
3939
@session(tags=["test"])
4040
def test_javascript(session: Session) -> None:
4141
install_requirements_file(session, "test-env")
42+
install_requirements_file(session, "build-pkg")
4243
session.chdir(ROOT_DIR / "src" / "js")
4344
session.run("python", "-m", "nodejs.npm", "install", external=True)
4445
session.run("python", "-m", "nodejs.npm", "run", "check")

Diff for: requirements/build-pkg.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
twine
22
wheel
33
setuptools
4+
nodejs-bin==18.4.0a4

Diff for: requirements/test-env.txt

-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ pytest
33
anyio
44
pytest-cov
55
reactpy[testing,starlette]
6-
nodejs-bin==18.4.0a4

0 commit comments

Comments
 (0)