Skip to content

Commit

Permalink
Add 3.12 and 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
daveisfera committed Nov 26, 2024
1 parent f8f8c8d commit fa1b0a9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', 'pypy-3.9']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.9']

steps:
- uses: actions/checkout@v4
Expand All @@ -32,11 +32,11 @@ jobs:
python -m pip install tox tox-gh-actions
sudo apt-get install libmemcached-dev
- name: Lint
if: matrix.python-version == '3.10'
if: matrix.python-version == '3.13'
run: |
tox -e lint,mypy
- name: Docs
if: matrix.python-version == '3.10'
if: matrix.python-version == '3.13'
run: |
tox -e docs
- name: Disable IPv6 localhost
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.black]
target-version = ['py39', 'py310']
target-version = ['py39', 'py310', 'py311', 'py312', 'p313']

[tool.mypy]
python_version = 3.9
python_version = 3.13
ignore_missing_imports = true
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: PyPy
License :: OSI Approved :: Apache Software License
Topic :: Database
Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
envlist =
py39,
py310,
py311,
py312,
py313,
pypy3,
docs,
lint,
Expand All @@ -11,7 +14,7 @@ skip_missing_interpreters = true

[gh-actions]
python =
pypy-3.9: pypy3
pypy-3.13: pypy3

[testenv]
description = run tests with {basepython}
Expand Down

0 comments on commit fa1b0a9

Please sign in to comment.