You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to upgrade the version from 0.25 to fix the filename issue per #1312
However, I am not able to upgrade because the requirement of urllib3==2.2.2 is causing dependencies conflict issue with other packages in my environment. Check the history and it seems starting 0.27 version the requirement became very specific.
Do we really need this specific version? Can we make it to urllib3>=2 or exclude versions we don't want to use?
Hm. We pinned the specific versions of libraries because we had some breaks from minor version updates. I would like to at least pin the minor version - would 2.2.x be loose enough for you? I expect that there will be some noticeable changes through the life of 2.x
@jacalata its extremely bad practice to pin a specific version of a one of the most common python libraries in the world.
The only reason why this doesn't make tableauserverclient completely un-installable is because no other package is crazy enough to specify a specific version.
Please use normal constraints like >X.Y.Z,<3 where X.Y.Z is whatever the minimum required version is.
Uh oh!
There was an error while loading. Please reload this page.
Describe the bug
I was trying to upgrade the version from
0.25
to fix thefilename
issue per #1312However, I am not able to upgrade because the requirement of
urllib3==2.2.2
is causing dependencies conflict issue with other packages in my environment. Check the history and it seems starting 0.27 version the requirement became very specific.Do we really need this specific version? Can we make it to
urllib3>=2
or exclude versions we don't want to use?server-client-python/pyproject.toml
Line 18 in 257cf61
Versions
Details of your environment, including:
The text was updated successfully, but these errors were encountered: