rubenvdg commented on issue #6397: URL: https://github.com/apache/iceberg/issues/6397#issuecomment-1346538268
[@Fokko It seems that it only works on Python >= 3.9.8. There's some stuff on Protocols in the release notes](https://docs.python.org/release/3.9.8/whatsnew/changelog.html) that might ring a bell with you? To reproduce. This works: ``` FROM python:3.9.8 WORKDIR /app COPY . /app RUN pip install --upgrade pip virtualenv RUN pip install poetry RUN make install RUN make test ``` But this throws `TypeError: AvroStruct() takes no arguments`. ``` FROM python:3.9.8 WORKDIR /app COPY . /app RUN pip install --upgrade pip virtualenv RUN pip install poetry RUN make install RUN make test ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org