summaryrefslogtreecommitdiff
path: root/net-im/hangups/files/unpin-dependencies.patch
blob: 37c8795cdd8d51fb4f4905b50856a589d90cd9c3 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
diff --git a/setup.py b/setup.py
index 740ce61..67e3b84 100644
--- a/setup.py
+++ b/setup.py
@@ -65,15 +65,15 @@ with open('README.rst') as f:
 # hangups from breaking when new versions of dependencies are released,
 # especially for end-users (non-developers) who use pip to install hangups.
 install_requires = [
-    'ConfigArgParse==0.11.0',
+    'ConfigArgParse>=0.11.0',
     'aiohttp>=1.2,<1.3',
-    'appdirs==1.4.0',
-    'readlike==0.1.2',
+    'appdirs>=1.4.0',
+    'readlike>=0.1.2',
     'requests>=2.6.0,<3',  # uses semantic versioning (after 2.6)
-    'ReParser==1.4.3',
+    'ReParser>=1.4.3',
     'protobuf>=3.1.0,<3.2.0',
-    'urwid==1.3.1',
-    'MechanicalSoup==0.6.0',
+    'urwid>=1.3.1',
+    'MechanicalSoup>=0.6.0',
 ]
 
 
@@ -109,10 +109,10 @@ setup(
     packages=['hangups', 'hangups.ui'],
     install_requires=install_requires,
     tests_require=[
-        'pytest==3.0.5',
-        'pylint==1.6.4',
-        'pycodestyle==2.2.0',
-        'httpretty==0.8.14',
+        'pytest>=3.0.5',
+        'pylint>=1.6.4',
+        'pycodestyle>=2.2.0',
+        'httpretty>=0.8.14',
     ],
     cmdclass={
         'test': PytestCommand,