JingsongLi commented on PR #8083: URL: https://github.com/apache/paimon/pull/8083#issuecomment-4637974648
This looks like it will break the existing Python 3.6/3.7 jobs. `paimon-python/dev/requirements.txt` now pins `pyroaring==1.0.0` for `python_version < "3.8"`, but the workflow still runs Python `3.6.15` and installs `paimon-python/dev/requirements-dev.txt`. I checked pip resolution for binary wheels, and `pyroaring==1.0.0` is not available for cp36/cp37; for Python 3.6 pip only sees the old 0.3.x wheels, and for Python 3.7 it only sees up to 0.4.x. So this requirement can fail dependency installation, or force a source build in an environment that previously used wheels. Could we either keep a Python 3.6/3.7-compatible dependency path with a fallback for the `BitMap64` usage, or explicitly raise the supported Python/CI minimum to 3.8+ in the same PR? -- 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]
