Skip to content

Commit

Permalink
Support Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiqwang committed Mar 12, 2022
1 parent 3d98cb7 commit 1a90833
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ def load_requirements(path_dir=PATH_ROOT, file_name="requirements.txt", comment_
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -116,7 +117,7 @@ def load_requirements(path_dir=PATH_ROOT, file_name="requirements.txt", comment_
# 'Programming Language' classifiers above, 'pip install' will check this
# and refuse to install the project if the version does not match. See
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
python_requires=">=3.7",
python_requires=">=3.6.2",
# List additional URLs that are relevant to your project as a dict.
#
# This field corresponds to the "Project-URL" metadata fields:
Expand Down

0 comments on commit 1a90833

Please sign in to comment.