Skip to content

Commit 8f7d28e

Browse files
authored
Use python3 executable (#178)
Committed via https://github.com/asottile/all-repos
1 parent 2922dae commit 8f7d28e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/push_network.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Install antsibull-changelog, antsichaut
3838
run: >
39-
python -m pip install
39+
python3 -m pip install
4040
antsibull-changelog
4141
git+https://github.com/ansible-community/antsichaut.git
4242
pre-commit

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
fetch-depth: 0 # needed by setuptools-scm
4747

4848
- name: Build dists
49-
run: python -m tox
49+
run: python3 -m tox
5050

5151
- name: Publish to test.pypi.org
5252
uses: pypa/gh-action-pypi-publish@release/v1

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ usedevelop = false
3030
description = Runs all linting tasks
3131
commands =
3232
# to run a single linter you can do "pre-commit run flake8"
33-
python -m pre_commit run {posargs:--all}
33+
python3 -m pre_commit run {posargs:--all}
3434
deps = pre-commit>=1.18.1
3535
extras =
3636
skip_install = true

0 commit comments

Comments
 (0)