Skip to content

Commit 367b665

Browse files
authored
lower the install requirements (#3985)
* lower the install requirements * Update setup.py
1 parent 0479cce commit 367b665

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ def determine_opencc_version():
5454

5555
# determine opencc version
5656
if gcc_version:
57-
if int(gcc_version.split(".")[0]) <= 9:
58-
return "opencc==1.1.6" # GCC<=9 need opencc==1.1.6
57+
if int(gcc_version.split(".")[0]) < 9:
58+
return "opencc==1.1.6" # GCC<9 need opencc==1.1.6
5959
return "opencc" # default
6060

6161

0 commit comments

Comments
 (0)