Skip to content

Commit

Permalink
Add support for Python 3.12 (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
jparise authored Dec 9, 2023
1 parent 10eda93 commit 31b4e07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', 'pypy-3.8', 'pypy-3.9']
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9']

steps:
- uses: actions/checkout@v4
Expand All @@ -26,7 +26,7 @@ jobs:
cache-dependency-path: 'tests/requirements.txt'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pip setuptools
python -m pip install -r tests/requirements.txt
pip install -e .
- name: Lint
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: MIT License

[options]
Expand Down

0 comments on commit 31b4e07

Please sign in to comment.