Skip to content

Commit

Permalink
Add support for Python 3.13 (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Oct 30, 2024
1 parent b96ae99 commit fb6b3dc
Show file tree
Hide file tree
Showing 3 changed files with 5 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 @@ -15,7 +15,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
1 change: 1 addition & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ History
Bug fixes:

* Drop support for Python 3.8. (#137)
* Add support for Python 3.13. (#136)


2.1.20240726 (July 26th, 2024)
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand Down Expand Up @@ -76,6 +77,7 @@ envlist =
py310
py311
py312
py313
py39-lint
py39-norequests
Expand All @@ -85,6 +87,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313
[testenv]
extras = dev,cli
Expand Down

0 comments on commit fb6b3dc

Please sign in to comment.