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',
|