Skip to content

Commit 0b600fd

Browse files
Deprecate python3.9 support
Signed-off-by: Ayan Sinha Mahapatra <asmahapatra@aboutcode.org>
1 parent b0e0c11 commit 0b600fd

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

azure-pipelines.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,54 +10,54 @@ jobs:
1010
parameters:
1111
job_name: ubuntu22_cpython
1212
image_name: ubuntu-22.04
13-
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
13+
python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14']
1414
test_suites:
1515
all: venv/bin/pytest -n 2 -vvs
1616

1717
- template: etc/ci/azure-posix.yml
1818
parameters:
1919
job_name: ubuntu24_cpython
2020
image_name: ubuntu-24.04
21-
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
21+
python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14']
2222
test_suites:
2323
all: venv/bin/pytest -n 2 -vvs
2424

2525
- template: etc/ci/azure-posix.yml
2626
parameters:
2727
job_name: macos13_cpython
2828
image_name: macOS-13
29-
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
29+
python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14']
3030
test_suites:
3131
all: venv/bin/pytest -n 2 -vvs
3232

3333
- template: etc/ci/azure-posix.yml
3434
parameters:
3535
job_name: macos14_cpython
3636
image_name: macOS-14
37-
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
37+
python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14']
3838
test_suites:
3939
all: venv/bin/pytest -n 2 -vvs
4040

4141
- template: etc/ci/azure-posix.yml
4242
parameters:
4343
job_name: macos15_cpython
4444
image_name: macOS-15
45-
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
45+
python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14']
4646
test_suites:
4747
all: venv/bin/pytest -n 2 -vvs
4848

4949
- template: etc/ci/azure-win.yml
5050
parameters:
5151
job_name: win2022_cpython
5252
image_name: windows-2022
53-
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
53+
python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14']
5454
test_suites:
5555
all: venv\Scripts\pytest -n 2 -vvs
5656

5757
- template: etc/ci/azure-win.yml
5858
parameters:
5959
job_name: win2025_cpython
6060
image_name: windows-2025
61-
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
61+
python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14']
6262
test_suites:
6363
all: venv\Scripts\pytest -n 2 -vvs

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ packages = find:
5050
include_package_data = true
5151
zip_safe = false
5252
setup_requires = setuptools_scm[toml] >= 4
53-
python_requires = >=3.9
53+
python_requires = >=3.10
5454
install_requires =
5555
pytest >= 6, != 7.0.0
5656
pytest-xdist >= 2

0 commit comments

Comments
 (0)