| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
importlib-metadata was declared as a direct dependency (^6.6) solely as a fallback for the stdlib importlib.metadata import in connect/client/version.py. Since the project requires Python >=3.9 and importlib.metadata has been in the standard library since 3.8, the except branch never executed and the <7 ceiling imposed by the caret was entirely artificial. Remove the dependency from pyproject.toml and the try/except fallback in version.py (now importing directly from importlib.metadata). importlib-metadata remains in the lock at 6.11.0 as a transitive dependency of mkdocs (python<3.10), so requirements/docs.txt is unaffected. LITE-34447
|
|
Sorry, something went wrong.
|
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Summary
importlib-metadata was declared as a direct dependency (^6.6) solely as a fallback for the stdlib importlib.metadata import in connect/client/version.py.
Since the project requires Python >=3.9 and importlib.metadata has been in the standard library since 3.8, the except branch never executed and the <7 ceiling imposed by the caret (^6.6 → >=6.6,<7) was entirely artificial.
Changes
Notes
Verification