Skip to content

Commit f841c2f

Browse files
committed
Drop Python 3.7 add Python 3.11
Also test on latest Ubuntu and macOS Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 6f21d2b commit f841c2f

File tree

1 file changed

+22
-6
lines changed

1 file changed

+22
-6
lines changed

azure-pipelines.yml

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,46 +11,62 @@ jobs:
1111
parameters:
1212
job_name: ubuntu18_cpython
1313
image_name: ubuntu-18.04
14-
python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10']
14+
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11']
1515
test_suites:
1616
all: venv/bin/pytest -n 2 -vvs
1717

1818
- template: etc/ci/azure-posix.yml
1919
parameters:
2020
job_name: ubuntu20_cpython
2121
image_name: ubuntu-20.04
22-
python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10']
22+
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11']
23+
test_suites:
24+
all: venv/bin/pytest -n 2 -vvs
25+
26+
- template: etc/ci/azure-posix.yml
27+
parameters:
28+
job_name: ubuntu22_cpython
29+
image_name: ubuntu-22.04
30+
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11']
2331
test_suites:
2432
all: venv/bin/pytest -n 2 -vvs
2533

2634
- template: etc/ci/azure-posix.yml
2735
parameters:
2836
job_name: macos1015_cpython
2937
image_name: macos-10.15
30-
python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10']
38+
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11']
3139
test_suites:
3240
all: venv/bin/pytest -n 2 -vvs
3341

3442
- template: etc/ci/azure-posix.yml
3543
parameters:
3644
job_name: macos11_cpython
3745
image_name: macos-11
38-
python_versions: ['3.7', '3.8', '3.9', '3.10']
46+
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11']
47+
test_suites:
48+
all: venv/bin/pytest -n 2 -vvs
49+
50+
- template: etc/ci/azure-posix.yml
51+
parameters:
52+
job_name: macos12_cpython
53+
image_name: macos-12
54+
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11']
3955
test_suites:
4056
all: venv/bin/pytest -n 2 -vvs
4157

4258
- template: etc/ci/azure-win.yml
4359
parameters:
4460
job_name: win2019_cpython
4561
image_name: windows-2019
46-
python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10']
62+
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11']
4763
test_suites:
4864
all: venv\Scripts\pytest -n 2 -vvs
4965

5066
- template: etc/ci/azure-win.yml
5167
parameters:
5268
job_name: win2022_cpython
5369
image_name: windows-2022
54-
python_versions: ['3.7', '3.8', '3.9', '3.10']
70+
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11']
5571
test_suites:
5672
all: venv\Scripts\pytest -n 2 -vvs

0 commit comments

Comments
 (0)