From f8e02e1e83182dca09cec447c4da5f0081303755 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Mon, 10 Nov 2025 14:29:32 -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 e402a55..9a906c2 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 @@ -64,7 +64,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 cd4d88b..166da91 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