Skip to content

Commit

Permalink
prune-uploads: Use Python 3.9 #2132
Browse files Browse the repository at this point in the history
  • Loading branch information
abhidg committed Nov 8, 2021
1 parent cbde440 commit 35357d7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prune-uploads-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
working-directory: data-serving/scripts/prune-uploads
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: pip install -r requirements.txt
- name: Prune uploads
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prune-uploads-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
working-directory: data-serving/scripts/prune-uploads
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: pip install -r requirements.txt
- name: Prune uploads
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prune-uploads-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
working-directory: data-serving/scripts/prune-uploads
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: |
pip install -r requirements.txt
Expand Down

0 comments on commit 35357d7

Please sign in to comment.