Skip to content

Commit 1b049c8

Browse files
committed
Merge pull request markfinger#22 from zoni/py3
Preliminary Python 3 support
2 parents 6a066de + a91b326 commit 1b049c8

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Core libs
2-
requests==1.0.4
2+
requests==2.2.1
33

44
# Testing/Dev
55
nose==1.2.1
66
coverage==3.5.3
7-
ipython==0.13.1
7+
ipython==0.13.1

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
packages = find_packages(),
3636

3737
install_requires = [
38-
'requests==1.0.4',
38+
'requests',
3939
],
4040
package_data = {'assembla': []},
4141
entry_points = {},
@@ -56,5 +56,9 @@
5656
'Operating System :: OS Independent',
5757
'Programming Language :: Python',
5858
'License :: OSI Approved :: MIT License',
59+
'Programming Language :: Python',
60+
'Programming Language :: Python :: 2',
61+
'Programming Language :: Python :: 3',
5962
],
63+
use_2to3 = True,
6064
)

0 commit comments

Comments
 (0)