The jsonpickle version you are using is a bit outdated, wonder if you could update it to a more recent version.
In your setup.py file versions allowed are >=0.7.1, <1.0, those versions are from 2018.
You requirements.txt says: ~=1.4, >= 1.4.1, those versions are about a year old.
When we install the sdk from pypi, the setup.py version is leading, so the jsonpickle version is <1.0. Is that intentional? Especially given your requirements.txt has a version 2 years younger..
When combined with other dependencies this leads to dependency clashes.
The jsonpickle version you are using is a bit outdated, wonder if you could update it to a more recent version.
In your setup.py file versions allowed are
>=0.7.1, <1.0, those versions are from 2018.You
requirements.txtsays:~=1.4, >= 1.4.1, those versions are about a year old.When we install the sdk from pypi, the
setup.pyversion is leading, so the jsonpickle version is<1.0. Is that intentional? Especially given yourrequirements.txthas a version 2 years younger..When combined with other dependencies this leads to dependency clashes.