File: relax-setup-py-dependency-versions

package info (click to toggle)
python-mbed-ls 1.6.2%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 576 kB
  • sloc: python: 2,784; makefile: 32; sh: 14
file content (34 lines) | stat: -rw-r--r-- 782 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
27
28
29
30
31
32
33
34
From: Nick Morrott <nickm@debian.org>
Date: Sun, 13 Nov 2022 10:36:04 +0200
Subject: Relax dependency versions in setup.py

Forwarded: not-needed
Last-Update: 2022-02-06

Last-Update: 2022-02-06
---
 setup.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/setup.py b/setup.py
index 1b27fbb..eb02cd5 100644
--- a/setup.py
+++ b/setup.py
@@ -51,13 +51,13 @@ setup(name='mbed-ls',
         ],
       },
       install_requires=[
-          "PrettyTable>=0.7.2",
+          "PrettyTable",
           "fasteners",
-          "appdirs>=1.4"
+          "appdirs"
       ],
       tests_require = [
-          "mock>=2",
-          "pytest>=3"
+          "mock",
+          "pytest"
       ],
       extras_require = {
           "colorized_logs": ["colorlog"]