File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,6 @@ def run(self):
126
126
127
127
INSTALL_REQUIRES = [
128
128
'contextlib2>=0.5.1,<1.0' ,
129
- 'enum34>=1.1.2,<2.0;python_version<"3.4"' ,
130
129
'future>=0.16.0' ,
131
130
'mutablerecords>=0.4.1,<2.0' ,
132
131
'oauth2client>=1.5.2,<2.0' ,
@@ -136,6 +135,11 @@ def run(self):
136
135
'sockjs-tornado>=1.0.3,<2.0' ,
137
136
'tornado>=4.3,<5.0' ,
138
137
]
138
+ # Not all versions of setuptools support semicolon syntax for specifying
139
+ # platform-specific dependencies, so we do it the old school way.
140
+ if sys .version_info < (3 ,4 ):
141
+ INSTALL_REQUIRES .append ('enum34>=1.1.2,<2.0' )
142
+
139
143
140
144
141
145
class PyTestCommand (test ):
@@ -174,7 +178,7 @@ def run_tests(self):
174
178
175
179
setup (
176
180
name = 'openhtf' ,
177
- version = '1.2.0 ' ,
181
+ version = '1.2.1 ' ,
178
182
description = 'OpenHTF, the open hardware testing framework.' ,
179
183
author = 'John Hawley' ,
180
184
You can’t perform that action at this time.
0 commit comments