Skip to content

Commit e970f26

Browse files
committed
bump: version to 0.3.2 and add support for Python 3.12, 3.13
1 parent 88089ff commit e970f26

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.black]
22
line-length = 100
3-
target-version = ['py39']
3+
target-version = ['py312']
44

55
[tool.isort]
66
combine_as_imports = true

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
setup(
2020
name="strongtyping-pyoverload",
21-
version="0.3.1",
21+
version="0.3.2",
2222
description="A Runtime method overload decorator.",
2323
long_description=README,
2424
long_description_content_type="text/markdown",
@@ -31,8 +31,10 @@
3131
"Programming Language :: Python :: 3.9",
3232
"Programming Language :: Python :: 3.10",
3333
"Programming Language :: Python :: 3.11",
34+
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
3436
],
35-
install_requires=["strongtyping>=3.9,>=3.10,<=3.11"],
37+
install_requires=["strongtyping>=3.9,>=3.10,<=3.13"],
3638
dependencies="",
3739
packages=packages,
3840
python_requires=">=3.9",

0 commit comments

Comments
 (0)