build icon indicating copy to clipboard operation
build copied to clipboard

TF2.8-Python3.10 Build Container has missing auditwheel installation

Open seanpmorgan opened this issue 3 years ago • 2 comments

TF2.8 Containers: https://github.com/tensorflow/addons/runs/5204026826?check_suite_focus=true

Switching to using latest containers works: https://github.com/tensorflow/addons/runs/5204540189?check_suite_focus=true

seanpmorgan avatar Feb 15 '22 18:02 seanpmorgan

It's installed in a different location that the rest of the containers:

Python 3.7.12 (default, Sep 10 2021, 00:20:04)
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import auditwheel
>>> auditwheel.__file__
'/usr/local/lib/python3.7/dist-packages/auditwheel/__init__.py'


Python 3.10.1 (main, Dec  8 2021, 03:53:14) [GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import auditwheel
>>> auditwheel.__file__
'/usr/lib/python3.10/dist-packages/auditwheel/__init__.py'

seanpmorgan avatar Feb 15 '22 18:02 seanpmorgan

I'm pretty late on this, but I ended up needing to support branches for the containers, and I think this is now fixed for the 2.8 containers. Can you check if they still work? They're based on the same containers from a few days ago with different packages installed, so I'm not sure if they work right.

angerson avatar Apr 07 '22 21:04 angerson