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 have a problem upgrading yahooquery with pip because the newer version requires lxml<5.0.0 which would be incompatible with Python 3.13 and fails to install. Effectively, due to this requirement the compatibility of yahooquery was downgraded from Python 3.13 to 3.12 somewhere between versions 2.3.2 and 2.3.7, perhaps unintentionally.
Please consider removing the upper bound lxml restriction in newer versions of the package so it can be used with Python 3.13.
(Looking at its source, I can see yahooquery is configured for Python 3.8.1+ but Pypi shows 3.12 to be the max version, so I'm not quite sure this has to be a feature request or a bug report.)
The text was updated successfully, but these errors were encountered:
similar here. v2.3.7 forces to install lxml 4.9.4 or you have to use v2.3.2 with lxml >= 5 option. This is caused by the lxml="^4.9.3" restriction in the pyproject.toml but it doesn't comply with the dependency entry: python = ">=3.8.1,<4.0". I don't think that a newer version intentionally forces to use an older version of a lib like lxml but I'm not sure if the condition is that. So, please consider to either update the unintentional restriction in the pyproject.toml or (if it's intentional) supporting lxml = ">=4.9.4,<6"
I have a problem upgrading yahooquery with pip because the newer version requires lxml<5.0.0 which would be incompatible with Python 3.13 and fails to install. Effectively, due to this requirement the compatibility of yahooquery was downgraded from Python 3.13 to 3.12 somewhere between versions 2.3.2 and 2.3.7, perhaps unintentionally.
Please consider removing the upper bound lxml restriction in newer versions of the package so it can be used with Python 3.13.
(Looking at its source, I can see yahooquery is configured for Python 3.8.1+ but Pypi shows 3.12 to be the max version, so I'm not quite sure this has to be a feature request or a bug report.)
The text was updated successfully, but these errors were encountered: