Skip to content

Commit 67923e8

Browse files
nmorozetimothytrippel
authored andcommitted
Update pkginfo
This fixes a regression where an exception is raised when setting up OpenTitan's Python dependencies: .../.cache/bazel/.../.../external/rules_python/python/pip_install/extract_wheels/lib/wheel.py", line 57, in entry_points name = "{}-{}".format(metadata.name.replace("-", "_"), metadata.version) AttributeError: 'NoneType' object has no attribute 'replace' The issue seems related to the previous version of pkginfo not being able to parse newer versions of Python package metadata, although the reason why this started failing all of a sudden has not been root caused. Signed-off-by: Noah Moroze <[email protected]>
1 parent 07c3f85 commit 67923e8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/pip_install/repositories.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ _RULE_DEPS = [
2929
),
3030
(
3131
"pypi__pkginfo",
32-
"https://files.pythonhosted.org/packages/cd/00/49f59cdd2c6a52e6665fda4de671dac5614366dc827e050c55428241b929/pkginfo-1.8.2-py2.py3-none-any.whl",
33-
"c24c487c6a7f72c66e816ab1796b96ac6c3d14d49338293d2141664330b55ffc",
32+
"https://files.pythonhosted.org/packages/fa/3d/f4f2ba829efb54b6cd2d91349c7463316a9cc55a43fc980447416c88540f/pkginfo-1.12.1.2-py3-none-any.whl",
33+
"c783ac885519cab2c34927ccfa6bf64b5a704d7c69afaea583dd9b7afe969343",
3434
),
3535
(
3636
"pypi__setuptools",

0 commit comments

Comments
 (0)