File: tweak-requirements.patch

package info (click to toggle)
python-pyramid 1.5.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,528 kB
  • ctags: 6,601
  • sloc: python: 35,136; makefile: 38
file content (26 lines) | stat: -rw-r--r-- 765 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Description: Comment out some requirements that can't be satisfied
 automatically from installed packages or debian/py{,3}dist-override files.
 It's okay because our Build-Depends will take care of it.
Author: Barry Warsaw <barry@debian.org>
Forwarded: not-needed

--- a/setup.py
+++ b/setup.py
@@ -39,7 +39,7 @@
 
 install_requires=[
     'setuptools',
-    'WebOb >= 1.3.1', # request.domain and CookieProfile
+    #'WebOb >= 1.3.1', # request.domain and CookieProfile
     'repoze.lru >= 0.4', # py3 compat
     'zope.interface >= 3.8.0',  # has zope.interface.registry
     'zope.deprecation >= 3.5.0', # py3 compat
@@ -49,7 +49,7 @@
     ]
 
 tests_require = [
-    'WebTest >= 1.3.1', # py3 compat
+    #'WebTest >= 1.3.1', # py3 compat
     ]
 
 if not PY3: