From bf03a454753698e24c6260b345c63b142367b3fb Mon Sep 17 00:00:00 2001 From: Alexander Engelsberger Date: Mon, 30 Aug 2021 17:05:25 +0200 Subject: [PATCH] feat(compatibility): Python3.6 compatibility --- .travis.yml | 1 + setup.py | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 65365fb..e89f613 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ python: - 3.9 - 3.8 - 3.7 + - 3.6 cache: directories: - "$HOME/.cache/pip" diff --git a/setup.py b/setup.py index e83719f..86de0a9 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,7 @@ setup( url=PROJECT_URL, download_url=DOWNLOAD_URL, license="MIT", - python_requires=">=3.7", + python_requires=">=3.6", install_requires=INSTALL_REQUIRES, extras_require={ "datasets": DATASETS, @@ -78,6 +78,9 @@ setup( "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.6", "Operating System :: OS Independent", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Software Development :: Libraries",