From: Guillaume Abrioux Date: Fri, 2 Jun 2023 21:49:56 +0000 (+0200) Subject: tests: use python 3.9 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=d6bc8e3b9ae5d4561e55fea49b8adef16f08e438;p=ceph-ansible.git tests: use python 3.9 Signed-off-by: Guillaume Abrioux --- diff --git a/.github/workflows/ansible-lint.yml b/.github/workflows/ansible-lint.yml index 9a8b4962a..74ac7e094 100644 --- a/.github/workflows/ansible-lint.yml +++ b/.github/workflows/ansible-lint.yml @@ -8,7 +8,7 @@ jobs: - name: Setup python uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: '3.9' architecture: x64 - run: pip install -r <(grep ansible tests/requirements.txt) ansible-lint==6.16.0 netaddr - run: ansible-galaxy install -r requirements.yml diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 509a10163..151d31bd9 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9] + python-version: [3.9] name: Python ${{ matrix.python-version }} steps: - uses: actions/checkout@v2