Skip to content

Commit 2006f58

Browse files
committed
V2, update setup.py -- drop support for python<3.8, add support for 3.11, 3.12, 3.13
1 parent fe5bd46 commit 2006f58

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ def readme():
1212
"Programming Language :: Python",
1313
"Programming Language :: Python :: 3",
1414
"Programming Language :: Python :: 3 :: Only",
15-
"Programming Language :: Python :: 3.6",
16-
"Programming Language :: Python :: 3.7",
1715
"Programming Language :: Python :: 3.8",
1816
"Programming Language :: Python :: 3.9",
1917
"Programming Language :: Python :: 3.10",
18+
"Programming Language :: Python :: 3.11",
19+
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
2021
]
2122

2223
install_requires = [
@@ -25,7 +26,7 @@ def readme():
2526

2627
setup(
2728
name="pydantic-to-typescript",
28-
version="1.1.11",
29+
version="2.0.0",
2930
description="Convert pydantic models to typescript interfaces",
3031
license="MIT",
3132
long_description=readme(),

0 commit comments

Comments
 (0)