From 3a662f05206c8f3705f603b1bd61ee2689277a6f Mon Sep 17 00:00:00 2001 From: Catherine Date: Tue, 8 Aug 2023 10:27:20 +0000 Subject: Drop support for Python 3.7. Also, expand the Python CI version range to be the same as that of Amaranth. --- .github/workflows/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2541e90..12cbe32 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,19 +3,27 @@ on: pull_request: schedule: - cron: '0 0 * * *' # test daily against git HEAD of dependencies + name: CI jobs: + test: runs-on: ubuntu-latest strategy: matrix: python-version: - '3.8' + - '3.9' + - '3.10' + - '3.11' + - 'pypy-3.8' + - 'pypy-3.9' # this version range needs to be synchronized with the one in pyproject.toml amaranth-version: - '0.3' - 'git' fail-fast: false + name: 'test (${{ matrix.python-version }}, ${{ matrix.amaranth-version }})' steps: - name: Check out source code uses: actions/checkout@v3 -- cgit v1.2.3