Skip to content

Commit 63c431c

Browse files
committed
Move pip install outside setup-python action
1 parent c843a49 commit 63c431c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/sync.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ jobs:
4646
python-version: ${{ inputs.version }}
4747
allow-prereleases: true
4848
cache: 'pip'
49-
pip-install: -r requirements.txt
5049

5150
# 2- Install dependencies
5251

@@ -55,6 +54,11 @@ jobs:
5554
cd /usr/local/bin
5655
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash -s -- v$TX_CLI_VERSION
5756
57+
- name: Install Python packages
58+
run:
59+
python -m pip install -U pip
60+
python -m pip install -r requirements.txt
61+
5862
- name: Install APT dependencies
5963
run: sudo apt update -y && sudo apt install gettext -y
6064

0 commit comments

Comments
 (0)