File: Add-missing-dependency-on-python-certifi.patch

package info (click to toggle)
python-ilorest 5.3.0.0a%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,236 kB
  • sloc: python: 10,670; makefile: 375; sh: 3
file content (22 lines) | stat: -rw-r--r-- 667 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
From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Wed, 28 Apr 2021 18:53:01 +0200
Subject: Add missing dependency on (python-)certifi

The library is using python-certifi since version 3.2.1 at least, thus
the library needs to depend on this additional part.
---
 setup.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/setup.py b/setup.py
index cda6e29..1316175 100644
--- a/setup.py
+++ b/setup.py
@@ -22,6 +22,7 @@ setup(name='python-ilorest-library',
       packages=find_packages('src'),
       package_dir={'': 'src'},
       install_requires=[
+          'certifi',
           'jsonpatch',
           'jsonpath_rw',
           'jsonpointer',