8000 Use python instead of python3 to run babel_runner.py · python/python-docs-theme@7878f4e · GitHub
[go: up one dir, main page]

Skip to content

Commit 7878f4e

Browse files
Use python instead of python3 to run babel_runner.py
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
1 parent 6b6f0d2 commit 7878f4e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ jobs:
6464
cache: pip
6565
- name: Install dependencies
6666
run: |
67-
pip install -U pip setuptools
68-
pip install Babel jinja2
69-
- run: python3 babel_runner.py extract
70-
- run: python3 babel_runner.py init -l pt_BR
71-
- run: python3 babel_runner.py update
72-
- run: python3 babel_runner.py update -l pt_BR
73-
- run: python3 babel_runner.py compile
74-
- run: python3 babel_runner.py compile -l pt_BR
67+
pip install --upgrade pip
68+
pip install Babel jinja2 setuptools
69+
- run: python babel_runner.py extract
70+
- run: python babel_runner.py init -l pt_BR
71+
- run: python babel_runner.py update
72+
- run: python babel_runner.py update -l pt_BR
73+
- run: python babel_runner.py compile
74+
- run: python babel_runner.py compile -l pt_BR
7575
- name: Print .pot file
7676
shell: bash
7777
run: cat locales/messages.pot

0 commit comments

Comments
 (0)
0