Skip to content

Commit 03fe0ec

Browse files
committed
Raise minimum Python to 3.10
1 parent 0ea5605 commit 03fe0ec

3 files changed

Lines changed: 14 additions & 89 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
fail-fast: false
4040
matrix:
4141
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
42-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
42+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
4343

4444
steps:
4545
- uses: actions/checkout@v5
@@ -58,9 +58,9 @@ jobs:
5858
uses: codecov/codecov-action@v5
5959

6060
- name: Run tests with lowest resolution
61-
if: matrix.python-version == '3.9' && matrix.os == 'ubuntu-latest'
61+
if: matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest'
6262
run: just test-lowest
6363

6464
- name: Run tests with highest resolution
65-
if: matrix.python-version == '3.13' && matrix.os == 'ubuntu-latest'
65+
if: matrix.python-version == '3.14' && matrix.os == 'ubuntu-latest'
6666
run: just test-highest

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ classifiers = [
1414
"Programming Language :: Python :: 3",
1515
"Programming Language :: Python :: 3 :: Only",
1616
]
17-
requires-python = ">=3.9"
17+
requires-python = ">=3.10"
1818
dependencies = ["click>=8.1.8,!=8.2.0", "pytask>=0.5.2"]
1919
dynamic = ["version"]
2020

0 commit comments

Comments
 (0)