From e1c52a30b7ee7f8bef820dd6ea0a12d8a4cf0d7d Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Sat, 19 Aug 2023 13:22:26 +0200 Subject: [PATCH] Update tests on CI --- .github/workflows/tests.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 378963a..f532d76 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,12 +8,17 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.8"] + python-version: ['3.11'] + include: + - os: ubuntu-latest + python-version: '3.7' + - os: ubuntu-latest + python-version: 'pypy-3.8' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Upgrade pip and setuptools