File: 01-setup.patch

package info (click to toggle)
python-irc 8.5.3%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 424 kB
  • ctags: 466
  • sloc: python: 2,403; makefile: 6
file content (26 lines) | stat: -rw-r--r-- 825 bytes parent folder | download | duplicates (2)
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
Author: Daniel Baumann <mail@daniel-baumann.ch>
Description: Remove unecessary build dependencies.

diff -Naurp python-irc.orig/setup.py python-irc/setup.py
--- python-irc.orig/setup.py
+++ python-irc/setup.py
@@ -16,7 +16,7 @@ setup_params = dict(
     name="irc",
     description="IRC (Internet Relay Chat) protocol client library for Python",
     long_description=read_long_description(),
-    use_hg_version=True,
+    use_hg_version=False,
     packages=setuptools.find_packages(),
     author="Joel Rosdahl",
     author_email="joel@rosdahl.net",
@@ -34,10 +34,6 @@ setup_params = dict(
     install_requires=[
         'six',
     ] + importlib_req + argparse_req,
-    setup_requires=[
-        'hgtools',
-        'pytest-runner',
-    ],
     tests_require=[
         'pytest',
         'mock',