8000 Fix the type in version comparison in setup script. · shader/python-fire@cd95ae2 · GitHub
[go: up one dir, main page]

Skip to content

Commit cd95ae2

Browse files
joejoevictorcopybara-github
authored andcommitted
Fix the type in version comparison in setup script.
PiperOrigin-RevId: 285468373 Change-Id: I9e7d2afe8fcf899aee975b20eebba873ab68bb62
1 parent 15a6f6b commit cd95ae2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
DEPENDENCIES = [
3333
'six',
3434
'termcolor',
35-
] + (['enum34'] if sys.version < 3.4 else [])
35+
] + (['enum34'] if sys.version < '3.4' else [])
3636

3737
TEST_DEPENDENCIES = [
3838
'hypothesis',

0 commit comments

Comments
 (0)
0