Skip to content

Commit 66113b7

Browse files
drop support for 3.6 and 3.7 add support for 3.11 and 3.12
1 parent c436211 commit 66113b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def read_req_file(req_type):
2626
long_description=io.open("README.md", encoding="utf-8").read(), # pylint: disable=consider-using-with
2727
long_description_content_type="text/markdown",
2828
install_requires=read_req_file("install"),
29-
python_requires=">=3.6",
29+
python_requires=">=3.8",
3030
extras_require={
3131
"ci": read_req_file("ci"),
3232
"dev": read_req_file("dev"),
@@ -64,11 +64,11 @@ def read_req_file(req_type):
6464
"License :: OSI Approved :: MIT License",
6565
"Programming Language :: Python",
6666
"Programming Language :: Python :: 3",
67-
"Programming Language :: Python :: 3.6",
68-
"Programming Language :: Python :: 3.7",
6967
"Programming Language :: Python :: 3.8",
7068
"Programming Language :: Python :: 3.9",
7169
"Programming Language :: Python :: 3.10",
70+
"Programming Language :: Python :: 3.11",
71+
"Programming Language :: Python :: 3.12",
7272
"Topic :: Database :: Front-Ends",
7373
"Topic :: Office/Business :: Financial :: Spreadsheet",
7474
"Topic :: Scientific/Engineering :: Visualization",

0 commit comments

Comments
 (0)