Skip to content

setup.py should not pin specific versions #38

@m000

Description

@m000

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.

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.

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions