-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Description
install_requires in setyp.py pins specific versions of several packages. This causes problems when managing package versions in the python environment where FaceSDK is used.
E.g. certifi==2020.12.5 forces all packages in the environment to use old root certificates. And e.g. Sentry SDK already requires urllib3>1.26.5, creating a conflict.
FaceSDK-web-python-client/setup.py
Lines 20 to 26 in 1c1529c
| install_requires=[ | |
| "certifi==2020.12.5", | |
| "future==0.18.2", | |
| "python-dateutil==2.8.1", | |
| "six==1.15.0", | |
| "urllib3==1.26.5", | |
| ], |
install_requires should be more flexible in allowing FaceSDK to work with more recent versions of the package.
jurrian and stoyanovdanail
Metadata
Metadata
Assignees
Labels
No labels