Skip to content

Commit

Permalink
build: use python3 everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
jacereda authored and ubitux committed Feb 11, 2024
1 parent 72b6f99 commit 0cc71ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libnopegl/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ endif
# out-of-tree builds.
# Adjusted from https://github.com/mesonbuild/meson/issues/7485
trim_prefix = run_command([
find_program('python'), '-c', 'import sys,os;print(os.path.relpath(*sys.argv[1:3]))',
find_program('python3'), '-c', 'import sys,os;print(os.path.relpath(*sys.argv[1:3]))',
meson.current_source_dir(),
meson.project_build_root(),
], check: true).stdout().strip()
Expand Down
2 changes: 1 addition & 1 deletion scripts/aberth-init.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""
This is used to define Aberth-Ehrlich constants in distmap.frag
Expand Down
2 changes: 1 addition & 1 deletion scripts/release-changelog.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""
Extract the changelog for a given tag or version
Expand Down

0 comments on commit 0cc71ae

Please sign in to comment.