Skip to content

Commit bb25116

Browse files
authored
Refactor Python setup and dependency installation
Updated Python setup and dependency installation process in GitHub Actions workflow.
1 parent d8e82e9 commit bb25116

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/fetch-and-regenerate-lists.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,15 @@ jobs:
2323
uses: actions/setup-python@v7
2424
with:
2525
python-version: "3.14"
26-
cache: "pip"
26+
# cache: "pip"
2727
check-latest: false
2828
- name: Install dependencies
2929
run: |
30-
# python -m pip install --upgrade pip
31-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
30+
if [ -f requirements.txt ]; then
31+
python -m pip install -r requirements.txt --quiet
32+
else
33+
echo "No requirements.txt, skipping."
34+
fi
3235
- name: Update external sources
3336
run: |
3437
python "./scripts/import_from_wiki_gg.py"

0 commit comments

Comments
 (0)