From 7819a41b276a2ca950122aeb898935efc2900b84 Mon Sep 17 00:00:00 2001 From: Lars Date: Tue, 12 Dec 2023 16:24:33 +0100 Subject: [PATCH] Run tests on python 3.12 --- .github/workflows/test.yml | 14 +++++++------- setup.cfg | 1 + 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4ad0a49..217d1aa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.7"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.7"] steps: - uses: actions/checkout@v3 @@ -20,7 +20,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: pip install pytest pytest-cov python-coveralls coverage flake8 pydocstyle + run: pip install pytest pytest-cov python-coveralls coverage flake8 pydocstyle setuptools - name: Lint with flake8 run: | @@ -47,8 +47,8 @@ jobs: needs: tests runs-on: ubuntu-22.04 steps: - - name: Coveralls Finished - uses: coverallsapp/github-action@master - with: - github-token: ${{ secrets.github_token }} - parallel-finished: true + - name: Coveralls Finished + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.github_token }} + parallel-finished: true diff --git a/setup.cfg b/setup.cfg index 5f94205..6cd79a8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,6 +18,7 @@ classifiers = Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: PyPy