Skip to content

Commit

Permalink
Add support for Python 3.13 (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Oct 29, 2024
1 parent c6feb2a commit 4769017
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

name: Python ${{ matrix.python-version}}
steps:
Expand Down
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ History
5.1.0 (in development)
----------------------

**Features**

* Add support for Python 3.13 (#159)

**Backwards incompatible changes**

* Dropped support for Python 3.8 (#160)
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
urls.Homepage = "https://github.com/willkg/markus"
urls.Documentation = "https://markus.readthedocs.io/"
Expand Down Expand Up @@ -82,13 +83,15 @@ envlist =
py310
py311
py312
py313
[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313
[testenv]
extras = dev,datadog,statsd
Expand Down

0 comments on commit 4769017

Please sign in to comment.