Skip to content

Commit

Permalink
Remove python 3.7 dependency in run_examples.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vtemplier committed Mar 22, 2024
1 parent 71b9a42 commit 2e553a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tests/run_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def path_to(script_name:str)->str:
# We use the environment variable set by git lab (see: https://docs.gitlab.com/ee/ci/variables/predefined_variables.html)
if getenv("GITLAB_CI") is not None:
print("Script run by gitlab")
python_path = join_path(dirname(abspath(__file__)), "..", "venv", "bin", "python3.7")
python_path = join_path(dirname(abspath(__file__)), "..", "venv", "bin", "python3")
else:
print("Script run by a user")
python_path = "python"
Expand Down

0 comments on commit 2e553a3

Please sign in to comment.