Open Muyv opened 2 years ago
Hello @Muyv,
Thank you for pointing this mistake out. I will try to make the dependencies consistent in next release.
Meanwhile, can you update your requirements.txt
to just following and see if things work for you?
camunda-external-task-client-python3==4.3.0
Hello @Muyv, Thank you for pointing this mistake out. I will try to make the dependencies consistent in next release. Meanwhile, can you update your
requirements.txt
to just following and see if things work for you?camunda-external-task-client-python3==4.3.0
thanks for your response, i can now install the package by pip install camunda-external-task-client-python3
and then pip install requests==2.27.1
indenpendently to avoid the errors.
look forward to your upgrade.
Please, allow new requests in install_requires (setup.cfg) You can use requests>=2.24.0
Hi, maintainers:
i'm attempting to use this awesome package in my project to do some workflow integration. when i try to
pip install -r requirements.txt
, it sayshere is the part of my
requirements.txt
:but i have another package which uses requests package version >= 2.24.0 when i remove
==4.3.0
, it works, got an old version 3.0.0,maybe here are some clue to find out the reason: the 2.24.0 appears in
setup.cfg
, but inrequirements.txt
it is 2.26.0https://github.com/camunda-community-hub/camunda-external-task-client-python3/blob/ed7a493942dea6c1b570298f67b09dc12ff7da11/setup.cfg#L26
https://github.com/camunda-community-hub/camunda-external-task-client-python3/blob/ed7a493942dea6c1b570298f67b09dc12ff7da11/requirements.txt#L1
i'm new to python, i don't know how pypi/pip works. but i guess it was just a mistyping of manifest .
thx.