Skip to content

Commit

Permalink
Run tests on python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
flabbamann authored and hthiery committed Dec 23, 2023
1 parent 19cd1e9 commit 5756c51
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand All @@ -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
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 5756c51

Please sign in to comment.