Skip to content

Commit

Permalink
revert python version check
Browse files Browse the repository at this point in the history
  • Loading branch information
kan-bayashi committed Nov 16, 2023
1 parent 22f097e commit e8cd732
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
from setuptools import find_packages
from setuptools import setup

if LooseVersion(sys.version) < LooseVersion("3.8"):
if LooseVersion(sys.version) < LooseVersion("3.7"):
raise RuntimeError(
"parallel-wavegan requires Python>=3.8, "
"parallel-wavegan requires Python>=3.7, "
"but your Python is {}".format(sys.version)
)
if LooseVersion(pip.__version__) < LooseVersion("19"):
Expand Down Expand Up @@ -85,6 +85,7 @@
extras_require=extras_require,
entry_points=entry_points,
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit e8cd732

Please sign in to comment.