CI: Add macOS 15.3 (#9805)

* Add macOS 15.3.

* Install setuptools on macOS 15.
This commit is contained in:
Felix Fontein 2025-02-26 21:30:22 +01:00 committed by GitHub
commit dd4268e0d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 2 deletions

View file

@ -8,6 +8,12 @@
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
- name: Make sure setuptools is installed
pip:
name: setuptools
state: present
when: ansible_facts.distribution == 'MacOSX' and ansible_distribution_version is version('15', '>=')
- name: run python_requirements_info module
python_requirements_info:
register: basic_info