kevinjqliu commented on PR #2268: URL: https://github.com/apache/iceberg-python/pull/2268#issuecomment-3148699566
ok this is interesting. the `.so` file is `decoder_fast.cpython-310-x86_64-linux-gnu.so` which implies its built for python 3.10 this PR, the test failed. and poetry is using 3.9 ``` poetry run pytest tests/ -m "(unmarked or parametrize) and not integration" -v ============================= test session starts ============================== platform linux -- Python 3.9.23, pytest-7.4.4, pluggy-1.6.0 -- /home/runner/.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.9/bin/python ``` my pr, the test passed. and poetry is using 3.10 ``` platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.6.0 -- /home/runner/.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.9/bin/python ``` In fact, if you check all 4 `lint-and-test` and expand `Run unit tests with coverage`, they all say 3.10 https://github.com/kevinjqliu/iceberg-python/actions/runs/16709346308/job/47291940694?pr=18 🤔 -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
