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

package info (click to toggle)
python-ilorest 7.0.0.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,252 kB
  • sloc: python: 11,784; makefile: 375; sh: 3
file content (22 lines) | stat: -rw-r--r-- 734 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: 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(+)

Index: python-ilorest/setup.py
===================================================================
--- python-ilorest.orig/setup.py
+++ python-ilorest/setup.py
@@ -23,6 +23,7 @@ setup(name='python-ilorest-library',
       packages=find_packages('src'),
       package_dir={'': 'src'},
       install_requires=[
+          'certifi',
           'jsonpatch',
           'jsonpath_rw',
           'jsonpointer',