Skip to content

Commit

Permalink
Install setuptools on macOS 15.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Feb 26, 2025
1 parent d5bf723 commit 113972e
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 113972e

Please sign in to comment.