File: 01_remove-argparse-from-install-requires.patch

package info (click to toggle)
python-cobe 2.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 228 kB
  • ctags: 213
  • sloc: python: 1,087; makefile: 5
file content (18 lines) | stat: -rw-r--r-- 537 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Remove argparse from install_requires so dh_python2 shipped by
 python-defaults (2.7.2-10) won't generate dependencies of the form
 "python (>= 2.7) | python-argparse" since anyway only from python 2.7.3~rc2-1
 egg-info metadata for argparse are shipped.
Author: Daniele Tricoli <eriol@mornie.org>
Forwarded: not-needed
Last-Update: 2013-08-09

--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,6 @@
 
     install_requires = [
         "PyStemmer==1.2.0",
-        "argparse==1.2.1",
         "python-irclib==0.4.8"
         ],