Skip to content

Commit cec2665

Browse files
authored
Merge branch 'main' into add-code-style-checks
2 parents a6c25fb + a2ced96 commit cec2665

2 files changed

Lines changed: 73 additions & 2 deletions

File tree

README.rst

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Usage
1414

1515
A brand new project
1616
-------------------
17+
1718
.. code-block:: bash
1819
1920
git init my-new-repo
@@ -27,6 +28,7 @@ From here, you can make the appropriate changes to the files for your specific p
2728

2829
Update an existing project
2930
---------------------------
31+
3032
.. code-block:: bash
3133
3234
cd my-existing-project
@@ -42,16 +44,52 @@ More usage instructions can be found in ``docs/skeleton-usage.rst``.
4244
Release Notes
4345
=============
4446

47+
- 2025-03-29:
48+
49+
- Add support for beta macOS-15
50+
- Add support for beta windows-2025
51+
52+
- 2025-02-14:
53+
54+
- Drop support for Python 3.8, add support in CI for Python 3.13, use Python 3.12 as default
55+
version.
56+
57+
- 2025-01-17:
58+
59+
- Drop support for macOS-12, add support for macOS-14
60+
- Add support in CI for ubuntu-24.04
61+
- Add support in CI for Python 3.12
62+
63+
- 2024-08-20:
64+
65+
- Update references of ownership from nexB to aboutcode-org
66+
67+
- 2024-07-01:
68+
69+
- Drop support for Python 3.8
70+
- Drop support for macOS-11, add support for macOS-14
71+
72+
- 2024-02-19:
73+
74+
- Replace support in CI of default ubuntu-20.04 by ubuntu-22.04
75+
76+
- 2023-10-18:
77+
78+
- Add dark mode support in documentation
79+
4580
- 2023-07-18:
81+
4682
- Add macOS-13 job in azure-pipelines.yml
4783

4884
- 2022-03-04:
85+
4986
- Synchronize configure and configure.bat scripts for sanity
5087
- Update CI operating system support with latest Azure OS images
5188
- Streamline utility scripts in etc/scripts/ to create, fetch and manage third-party
5289
dependencies. There are now fewer scripts. See etc/scripts/README.rst for details
5390

5491
- 2021-09-03:
92+
5593
- ``configure`` now requires pinned dependencies via the use of ``requirements.txt``
5694
and ``requirements-dev.txt``
5795
- ``configure`` can now accept multiple options at once
@@ -62,5 +100,6 @@ Release Notes
62100
ABOUT files for them.
63101

64102
- 2021-05-11:
103+
65104
- Adopt new configure scripts from ScanCode TK that allows correct configuration of which
66105
Python version is used.

azure-pipelines.yml

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,27 @@ jobs:
2626
- template: etc/ci/azure-posix.yml
2727
parameters:
2828
job_name: macos13_cpython
29+
image_name: macOS-13-xlarge
30+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
31+
test_suites:
32+
all: venv/bin/pytest -n 2 -vvs
33+
34+
- template: etc/ci/azure-posix.yml
35+
parameters:
36+
job_name: macos13_cpython_arm64
2937
image_name: macOS-13
3038
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
3139
test_suites:
3240
all: venv/bin/pytest -n 2 -vvs
3341

42+
- template: etc/ci/azure-posix.yml
43+
parameters:
44+
job_name: macos14_cpython
45+
image_name: macOS-14-large
46+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
47+
test_suites:
48+
all: venv/bin/pytest -n 2 -vvs
49+
3450
- template: etc/ci/azure-posix.yml
3551
parameters:
3652
job_name: macos14_cpython_arm64
@@ -41,8 +57,16 @@ jobs:
4157

4258
- template: etc/ci/azure-posix.yml
4359
parameters:
44-
job_name: macos14_cpython
45-
image_name: macOS-14-large
60+
job_name: macos15_cpython
61+
image_name: macOS-15
62+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
63+
test_suites:
64+
all: venv/bin/pytest -n 2 -vvs
65+
66+
- template: etc/ci/azure-posix.yml
67+
parameters:
68+
job_name: macos15_cpython_arm64
69+
image_name: macOS-15-large
4670
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
4771
test_suites:
4872
all: venv/bin/pytest -n 2 -vvs
@@ -62,3 +86,11 @@ jobs:
6286
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
6387
test_suites:
6488
all: venv\Scripts\pytest -n 2 -vvs
89+
90+
- template: etc/ci/azure-win.yml
91+
parameters:
92+
job_name: win2025_cpython
93+
image_name: windows-2025
94+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
95+
test_suites:
96+
all: venv\Scripts\pytest -n 2 -vvs

0 commit comments

Comments
 (0)