From eba6bcc19bacd27ffed89af5226dce8767a2461e Mon Sep 17 00:00:00 2001 From: Andy Leap Date: Thu, 18 Jan 2024 10:19:12 -0500 Subject: [PATCH] run unit tests on 3.12 --- .github/workflows/python.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 27f15835..a1a77a19 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -29,10 +29,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Set up Python 3.11 + - name: Set up Python 3.12 uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.12' # flake8 version should be same as the version in requirements/test.txt # to avoid lint errors on CI - name: pip install flak8 @@ -64,7 +64,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["pypy-3.10-v7.3.12", "3.8", "3.9", "3.10", "3.11"] + python-version: ["pypy-3.10-v7.3.12", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -84,7 +84,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }}