From e571942e86abafdef1fa447124b1c460e3d88984 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Mon, 10 Nov 2025 14:29:38 -0600 Subject: [PATCH] Require Python 3.13 until Ansible 13 is released. --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2215b63..2c41915 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: - name: Set up Python 3. uses: actions/setup-python@v5 with: - python-version: '3.x' + python-version: '3.13' # Can't go to 3.14+ until Ansible 13.x - name: Install test dependencies. run: pip3 install yamllint @@ -58,7 +58,7 @@ jobs: - name: Set up Python 3. uses: actions/setup-python@v5 with: - python-version: '3.x' + python-version: '3.13' # Can't go to 3.14+ until Ansible 13.x - name: Install test dependencies. run: pip3 install ansible molecule molecule-plugins[docker] docker diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c9faaea..7137814 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: - name: Set up Python 3. uses: actions/setup-python@v5 with: - python-version: '3.x' + python-version: '3.13' # Can't go to 3.14+ until Ansible 13.x - name: Install Ansible. run: pip3 install ansible-core