summaryrefslogtreecommitdiff
path: root/devel/py-sanetime/files/patch-setup.py
blob: 7d30f88b911c5d9496de7d50a037705fb266b5bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- ./setup.py.orig	2013-01-23 18:34:56.000000000 +1100
+++ ./setup.py	2013-02-10 17:59:21.880891462 +1100
@@ -18,7 +18,7 @@
     long_description=open('README.markdown').read(),
     install_requires=[
         'pytz>=2010',
-        'python-dateutil>=1.5,<2.0',  # we're not compatible with python 3.0 yet
+        'python-dateutil>=1.5',  # py-dateutil >2.1 is Python 2/3 compat
         'unittest2'
     ],
     classifiers=[
@@ -54,6 +54,7 @@
     ],
     include_package_data=True,
     test_suite='sanetime.test',
-    platforms=['any']
+    platforms=['any'],
+    zip_safe=False
 )