Skip to content

Commit a7ff706

Browse files
authored
Merge pull request #10 from pylhc/remove_py39
Remove Python 3.9
2 parents 86434dc + 66d3e07 commit a7ff706

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/cron.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
strategy:
4444
matrix:
4545
os: [ubuntu-22.04, ubuntu-24.04, macos-latest, windows-latest]
46-
# Make sure to escape 3.10 with quotes so it doesn't get interpreted as float 3.1 by GA's parser
47-
python-version: [3.9, "3.10", 3.11, 3.12, 3.x] # crons should always run latest python hence 3.x
46+
# We escape with quotes so it doesn't get interpreted as float (e.g. 3.10 -> 3.1 by GA's parser)
47+
python-version: ["3.10", "3.11", "3.12", "3.x"] # crons should always run latest python hence 3.x
4848

4949
steps:
5050
- uses: actions/checkout@v4

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
strategy:
5454
matrix:
5555
os: [ubuntu-22.04, ubuntu-24.04, macos-latest, windows-latest]
56-
# Make sure to escape 3.10 with quotes so it doesn't get interpreted as float 3.1 by GA's parser
57-
python-version: [3.9, "3.10", 3.11, 3.12]
56+
# We escape with quotes so it doesn't get interpreted as float (e.g. 3.10 -> 3.1 by GA's parser)
57+
python-version: ["3.10", "3.11", "3.12"]
5858

5959
steps:
6060
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)