File: 0001-Set-install_requires-to-enum34-instead-of-enum-compa.patch

package info (click to toggle)
python-zeroconf 0.17.6-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 252 kB
  • ctags: 332
  • sloc: python: 1,755; makefile: 21
file content (22 lines) | stat: -rw-r--r-- 543 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
From 41fb1b4da7a4581010d2c7dad5342945f7db3cae Mon Sep 17 00:00:00 2001
From: Ruben Undheim <ruben.undheim@gmail.com>
Date: Sun, 6 Mar 2016 10:26:23 +0100
Subject: Set install_requires to enum34 instead of enum-compat

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 75fdf2d..2a8db1b 100755
--- a/setup.py
+++ b/setup.py
@@ -53,7 +53,7 @@ setup(
         'mDNS',
     ],
     install_requires=[
-        'enum-compat',
+        'enum34',
         'netifaces',
         'six',
     ],