Skip to content

Commit bf4d9bd

Browse files
committed
Use new Transifex CLI tool
The Python implementation named transifex-client uses Transifex's APIv2, which is deprecated and will sunset in november 2022. The new tool, called Transifex CLI, is written in Golang and is APIv3-ready. So adjusting the CI and requirements.txt is required.
1 parent 5a36eec commit bf4d9bd

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/update.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535
uses: actions/setup-python@v2
3636
with:
3737
python-version: '3.9'
38+
- name: Install Transifex CLI
39+
run: |
40+
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash
41+
mv tx /usr/local/bin/tx
3842
- name: Install dependencies
3943
run: |
4044
sudo apt update -y && sudo apt install gettext -y

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
transifex-client
21
sphinx
32
sphinx-intl
43
powrap

0 commit comments

Comments
 (0)