build: Fix translations
transifex-client indirectly requires Unidecode>=0.04.16. As of version 1.3.2, Unidecode no longer supports Python 2. Its setup shebang points to /usr/bin/python, which it assumes is python3. To correct the issue, install pip3 instead of pip, avoiding the installation of Python 2.
This commit is contained in:
parent
cd72cf3390
commit
082f941bb9
|
@ -58,14 +58,14 @@ jobs:
|
||||||
libtag1-dev
|
libtag1-dev
|
||||||
pkg-config
|
pkg-config
|
||||||
protobuf-compiler
|
protobuf-compiler
|
||||||
python-pip
|
python3-pip
|
||||||
qtbase5-dev
|
qtbase5-dev
|
||||||
qttools5-dev-tools
|
qttools5-dev-tools
|
||||||
qttools5-dev
|
qttools5-dev
|
||||||
libsparsehash-dev
|
libsparsehash-dev
|
||||||
ssh
|
ssh
|
||||||
- name: Install tx
|
- name: Install tx
|
||||||
run: pip install transifex-client==0.13.9
|
run: pip3 install transifex-client==0.13.9
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v1.2.0
|
uses: actions/checkout@v1.2.0
|
||||||
- name: tx init
|
- name: tx init
|
||||||
|
|
|
@ -16,10 +16,10 @@ jobs:
|
||||||
run: >
|
run: >
|
||||||
apt-get update && apt-get install -y
|
apt-get update && apt-get install -y
|
||||||
git
|
git
|
||||||
python-pip
|
python3-pip
|
||||||
ssh
|
ssh
|
||||||
- name: Install tx
|
- name: Install tx
|
||||||
run: pip install transifex-client==0.13.9
|
run: pip3 install transifex-client==0.13.9
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v1.2.0
|
uses: actions/checkout@v1.2.0
|
||||||
- name: Switch to master
|
- name: Switch to master
|
||||||
|
|
Loading…
Reference in New Issue