Nikita Korolev

Results 69 comments of Nikita Korolev

ugh There was a dependency conflict in my venv: https://stackoverflow.com/a/71674345

Same story for me with pip cache. For some reason it works in one repo and fails in another with no useful info even in debug log. Configs are almost...

I still don't know what the root issue is. For some reason there is no cache dir at post setup time. So I just created cache dir before executing any...

I've made a simple example of this issue https://github.com/actions/setup-python/actions/runs/4940168763

@smougenot, I guess in your case it's better to call `mkdir -p /home/runner/.local/share/virtualenvs` directly. looks like pipenv cache location differs from pip

Yeah. botocore supports new urllib since 1.34.63 https://github.com/boto/botocore/pull/3141 I guess time has come.

Kinda - I tried to install ccm as a dependency but urllib3 has been downgraded to old version. Then I found this issue.

NB: ccm works fine with latest urllib3/boto3/botocore on python 3.10

Hello. If it is not intentional to keep props readonly why not just add setters for smooth increment? e.g. ```python a = Version('1.2.3') a.minor += 1 ```