Skip to content

Commit 7cadacd

Browse files
committed
update python version >=3.8, <=3.11
1 parent 9f77a62 commit 7cadacd

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

setup.py

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,30 @@
2121
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
2222
install_requires=open("requirements.txt").readlines(),
2323
include_package_data=True,
24-
python_requires='>=3.7.1',
24+
python_requires='>=3.8',
2525
classifiers=[
2626
"Programming Language :: Python",
27-
"Programming Language :: Python :: 3.7",
2827
"Programming Language :: Python :: 3.8",
2928
"Programming Language :: Python :: 3.9",
29+
"Programming Language :: Python :: 3.10",
30+
"Programming Language :: Python :: 3.11",
3031
],
3132
keywords=[
3233
"automated machine learning",
3334
"automl",
3435
"machine learning",
3536
"data science",
3637
"data mining",
37-
"mljar"
38+
"mljar",
39+
"random forest",
40+
"decision tree",
41+
"xgboost",
42+
"lightgbm",
43+
"catboost",
44+
"neural network",
45+
"extra trees",
46+
"linear model",
47+
"features selection",
48+
"features engineering"
3849
],
3950
)

0 commit comments

Comments
 (0)