Skip to content

Commit

Permalink
Use python3 executable (#4080)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea authored Apr 4, 2024
1 parent 34eb179 commit 81aa61b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
submodules: true

- name: Build dists
run: python -m tox
run: python3 -m tox

- name: Publish to pypi.org
if: >- # "create" workflows run separately from "push" & "pull_request"
Expand Down
2 changes: 1 addition & 1 deletion test/schemas/src/schema.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ describe("schemas under f/", function () {
}
// validate using check-jsonschema (python-jsonschema):
// const py = exec();
// Do not use python -m ... calling notation because for some
// Do not use python3 -m ... calling notation because for some
// reason, nodejs environment lacks some env variables needed
// and breaks usage from inside virtualenvs.
const proc = spawnSync(
Expand Down

0 comments on commit 81aa61b

Please sign in to comment.