Viktor Vorobev
Viktor Vorobev
I'm not sure if this would help, but I guess this should've done what you need: ```python import tenacity as tnc def my_before_sleep(retry_state): #handle exception here pass def result_if_max_retry_count(retry_state): pass...
For anyone stumbled across this thing as I did, there are 2 workarounds, as it seems: 1. Add `PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python` before running your script. This will enforce `python` backend instead of...
Hello! I've faced the same issue and to me, it helped to add the following, before actually creating `pipenv` environment: ```dockerfile RUN python3 -m pip install --upgrade --no-cache-dir packaging==22.0 RUN...
@matteius I believe it could, yes, but it is still a mystery to me, why on Earth, the optional dependency of the `virtualenv` can break `pipenv` this way. Guess, you...