Skip to content

Commit 8348ede

Browse files
committed
gh actions: rm python 3.9
1 parent aa45cf8 commit 8348ede

File tree

5 files changed

+5
-3316
lines changed

5 files changed

+5
-3316
lines changed

.github/workflows/upgrade-dependencies.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@ on:
55
workflow_dispatch: # Allow running on-demand
66
schedule:
77
# Runs every Monday at 8:00 UTC (4:00 Eastern)
8-
- cron: '0 8 * * 1'
8+
- cron: "0 8 * * 1"
99

1010
jobs:
1111
upgrade:
1212
name: ${{ matrix.os }}/py${{ matrix.python-version }}
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
16-
os: ['ubuntu-latest']
17-
python-version: ["3.9", "3.10", "3.11"]
16+
os: ["ubuntu-latest"]
17+
python-version: ["3.10", "3.11"]
1818
steps:
1919
- uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
2222
- uses: actions/setup-python@v5
2323
with:
2424
python-version: ${{ matrix.python-version }}
25-
cache: 'pip'
25+
cache: "pip"
2626
- name: Upgrade Python dependencies
2727
shell: bash
2828
run: |
@@ -52,7 +52,7 @@ jobs:
5252
needs: upgrade
5353
strategy:
5454
matrix:
55-
python-version: ["3.9"]
55+
python-version: ["3.11"]
5656
steps:
5757
- uses: actions/checkout@v4
5858
with:

0 commit comments

Comments
 (0)