FCamborda
FCamborda
You mean by accessing `__cause__`? In that case, that means that we still have to import `requests` and declare it as a direct dependency, which feels kind of artificial. ```python...
We're already using Tenacity. The snippet I posted is a variation of what we run in our codebase. I wanted to abstract that implementation detail. Correct me if I'm wrong,...
I don't know the complexity of your project, but perhaps in this case it's worth having a Base exception and different exceptions types inheriting? ```python class ArtifactoryException(Exception): """Base exception for...
what do you think of my proposal with the base exception?
I find this rather interesting. I'm trying to set up a Docker image where pyenv is available and usable (for both production and development purposes), and it would be interesting...
This PR https://github.com/atlassian-api/atlassian-python-api/pull/1303 reverts the changes and hopefully reverts this project to a working state again.
@Neodreadlord can you share a more significant part of the traceback? Which version of the package is this and where is this dependency coming from?
> @FCamborda this is pulling the latest version from http://pypi.python.org/simple which is listed as being 3.41.7 I forced it to use 3.41.0 until this is resolved and my pipeline is...
> @amanmibra -- The solution is generally to do something like: > > ``` > uv venv > uv pip install torch setuptools > uv pip install --no-build-isolation ${package} >...
Thank you for opening this issue. May I mention that this is also an issue for non-system Python installations in general? We install a Python interpreter using uv and have...