Skip to content

Commit 7f268b7

Browse files
authored
Merge pull request #243 from techtonik/patch-1
Remove Python 2 code from setup.py
2 parents 8de926e + 478c456 commit 7f268b7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ def read(filename):
1414
ret = f.read()
1515
return ret
1616

17-
install_requires = []
18-
if version_info < (2, 7):
19-
install_requires.append('argparse')
20-
2117
meta = dict(
2218
name=__project__,
2319
version=version,
@@ -35,7 +31,7 @@ def read(filename):
3531
'pyradio-client = pyradio.main:run_client'
3632
]
3733
},
38-
install_requires=install_requires,
34+
install_requires=[],
3935
test_suite = 'tests',
4036
)
4137

0 commit comments

Comments
 (0)