Skip to content

Commit 0acdc93

Browse files
committed
removing dependencies related to compatibility with old python versions we no longer support
1 parent b13532e commit 0acdc93

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

setup.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,12 @@ def find_version(*file_paths):
2828
long_description = f.read()
2929

3030
install_requires = [
31-
'enum34 ; python_version < "3.4"',
3231
'requests',
3332
'six',
3433
'pytz',
3534
'python-jose'
3635
]
3736

38-
if sys.version_info[0] < 3 or sys.version_info[1] < 4:
39-
install_requires.append('enum34')
40-
41-
if sys.version_info[0] < 3:
42-
install_requires.append('rsa<=4.0')
43-
4437
setup(
4538
name = 'opentok',
4639
version = find_version('opentok', 'version.py'),

0 commit comments

Comments
 (0)