Skip to content

Commit

Permalink
1: Remove python3.11 explicit call as any python3 may be available in…
Browse files Browse the repository at this point in the history
… CI.
  • Loading branch information
lfse-slafleur committed Jan 26, 2024
1 parent d47d359 commit 1a85937
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/linux/create_venv.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env sh

python3.11 -m venv ./.venv
python3 -m venv ./.venv
. .venv/bin/activate
pip3 install pip-tools
2 changes: 1 addition & 1 deletion python/ci/linux/create_venv.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env sh

python3.11 -m venv ./python/.venv
python3 -m venv ./python/.venv
. ./python/.venv/bin/activate
pip3 install pip-tools

0 comments on commit 1a85937

Please sign in to comment.