Skip to content

Commit 8c04222

Browse files
committed
Add macOS-13 job in azure-pipelines.yml
Signed-off-by: Jono Yang <[email protected]>
1 parent 7a22968 commit 8c04222

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

README.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
A Simple Python Project Skeleton
22
================================
33
This repo attempts to standardize the structure of the Python-based project's
4-
repositories using modern Python packaging and configuration techniques.
4+
repositories using modern Python packaging and configuration techniques.
55
Using this `blog post`_ as inspiration, this repository serves as the base for
66
all new Python projects and is mergeable in existing repositories as well.
77

@@ -41,6 +41,9 @@ More usage instructions can be found in ``docs/skeleton-usage.rst``.
4141
Release Notes
4242
=============
4343

44+
- 2023-07-18:
45+
- Add macOS-13 job in azure-pipelines.yml
46+
4447
- 2022-03-04:
4548
- Synchronize configure and configure.bat scripts for sanity
4649
- Update CI operating system support with latest Azure OS images

azure-pipelines.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,23 @@ jobs:
2626
- template: etc/ci/azure-posix.yml
2727
parameters:
2828
job_name: macos11_cpython
29-
image_name: macos-11
29+
image_name: macOS-11
3030
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11']
3131
test_suites:
3232
all: venv/bin/pytest -n 2 -vvs
3333

3434
- template: etc/ci/azure-posix.yml
3535
parameters:
3636
job_name: macos12_cpython
37-
image_name: macos-12
37+
image_name: macOS-12
38+
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11']
39+
test_suites:
40+
all: venv/bin/pytest -n 2 -vvs
41+
42+
- template: etc/ci/azure-posix.yml
43+
parameters:
44+
job_name: macos13_cpython
45+
image_name: macOS-13
3846
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11']
3947
test_suites:
4048
all: venv/bin/pytest -n 2 -vvs

0 commit comments

Comments
 (0)