stale-barista-80787
04/11/2025, 11:19 AMuv
, but not poetry
or just pip install
in venv I finally figured out that uv
had cached a version of flyteidl
which claimed to be 0.15.1, but had a diff compared to a cleanly installed 0.15.1 (at least for /flyteidl/core/workflow_pb2.py
). So I have no idea what actually happened here, but one possible explanation would be if there was a 0.15.1 release with this bug, and flyte maintainers made a new release without bumping the version number and I just got very unlucky. But it could also be something completely else, I'm not really interested in assigning blame here. (Also I didn't keep a copy of the bad lib, I was more interested in getting unblocked)
As for the fix, just running uv cache clean
and then nuking any .venv
folders with the bad release seems to have fixed things. So no followup needed as far as I'm concerned.
...
File ".../.venv/lib/python3.11/site-packages/flytekit/__init__.py", line 225, in <module>
from flytekit.core.array_node_map_task import map_task
File ".../.venv/lib/python3.11/site-packages/flytekit/core/array_node_map_task.py", line 14, in <module>
from flytekit.core.array_node import array_node
File "/.../.venv/lib/python3.11/site-packages/flytekit/core/array_node.py", line 35, in <module>
class ArrayNode:
File ".../.venv/lib/python3.11/site-packages/flytekit/core/array_node.py", line 146, in ArrayNode
def data_mode(self) -> _core_workflow.ArrayNode.DataMode:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: DataMode
stale-barista-80787
04/11/2025, 11:21 AM❯ uv run python
Cannot read termcap database;
using dumb terminal settings.
Python 3.11.6 (main, Oct 3 2023, 01:26:22) [Clang 17.0.1 ] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from flyteidl.core import workflow_pb2
>>> workflow_pb2.ArrayNode.DataMode
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: DataMode
>>>
average-finland-92144
04/11/2025, 1:22 PM1.15.1
as the latest flyteidl releasestale-barista-80787
04/11/2025, 2:23 PMstale-barista-80787
04/11/2025, 2:24 PMstale-barista-80787
04/11/2025, 2:26 PMaverage-finland-92144
04/11/2025, 2:27 PMstale-barista-80787
04/11/2025, 2:29 PMaverage-finland-92144
04/23/2025, 10:55 AMaverage-finland-92144
04/23/2025, 10:56 AMstale-barista-80787
04/23/2025, 12:04 PM