Skip to content

Commit cec0213

Browse files
committed
setup.py: install different version of avro in case of py3 runtime
1 parent 3704c98 commit cec0213

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@
3838
'CacheControl >= 0.11.7, < 0.12',
3939
'lockfile >= 0.9']
4040

41-
install_requires.append("avro") # TODO: remove me once cwltool is
41+
# install_requires.append("avro") # TODO: remove me once cwltool is
4242
# available in Debian Stable, Ubuntu 12.04 LTS
4343

44-
# extras_require={ # TODO: uncomment me, same conditions as above
45-
# ':python_version<"3"': ['avro'],
46-
# ':python_version>="3"': ['avro-python3']}
47-
extras_require = {} # TODO: to be removed when the above is added
44+
extras_require={ # TODO: uncomment me, same conditions as above
45+
':python_version<"3"': ['avro'],
46+
':python_version>="3"': ['avro-python3']}
47+
# extras_require = {} # TODO: to be removed when the above is added
4848

4949
setup(name='schema-salad',
5050
version='2.5',

0 commit comments

Comments
 (0)