Skip to content

Commit

Permalink
Use python3 executable (#1169)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea authored Mar 29, 2024
1 parent bd29fb9 commit 952bc04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ tasks:
- install
cmds:
- $VIRTUAL_ENV/bin/python3 ./tools/precheck.py
- $VIRTUAL_ENV/bin/python -m pre_commit run -a
- $VIRTUAL_ENV/bin/python3 -m pre_commit run -a
- tools/dirty.sh
silent: true
sources:
Expand Down
4 changes: 2 additions & 2 deletions packages/ansible-language-server/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ tasks:
# as we want to avoid using different node versions across the projects.
# 2nd node version is used for preparing for new versions
- asdf local nodejs latest:18 latest:$(asdf nodejs resolve lts)
- "{{.VIRTUAL_ENV}}/bin/python -m pre_commit autoupdate"
- "{{.VIRTUAL_ENV}}/bin/python3 -m pre_commit autoupdate"
- npm outdated
# bumps some developments dependencies
- npx ncu -u --dep dev
Expand All @@ -96,7 +96,7 @@ tasks:
<<: *env
PRE_COMMIT_COLOR: always
cmds:
- "{{.VIRTUAL_ENV}}/bin/python -m pre_commit run -a"
- "{{.VIRTUAL_ENV}}/bin/python3 -m pre_commit run -a"
silent: true
sources:
- "*.*"
Expand Down

0 comments on commit 952bc04

Please sign in to comment.