potiuk commented on PR #32786: URL: https://github.com/apache/airflow/pull/32786#issuecomment-1666863448
> Looks like we need a release of PyIceberg: > > ``` > 11.81 INFO: pip is looking at multiple versions of pyiceberg to determine which version is compatible with other requirements. This could take a while. > 11.90 ERROR: Cannot install apache-airflow and moto[cloudformation,glue]==4.1.14 because these package versions have conflicting dependencies. > 11.90 > 11.90 The conflict is caused by: > 11.90 moto[cloudformation,glue] 4.1.14 depends on pyparsing>=3.0.7; extra == "glue" > 11.90 moto[cloudformation,glue] 4.1.14 depends on pyparsing>=3.0.7; extra == "cloudformation" > 11.90 pyiceberg 0.4.0 depends on pyparsing<3.1.0 and >=3.0.7 > 11.90 The user requested (constraint) pyparsing==3.1.1 > ``` > > PyIceberg locks the constraint on `pyparsing<=3.0.9`, since we had a regression with 3.1.0, but that has been fixed on main. FYI @fokko - as long as you can spare your CI/tests (similarly as in cases of Airflow) to test latest releases, I really recommend not limiting the upper-bound versions, but just exclude buggy versions. This helps in the long run even if sometimes it might cause problems. Producing constraints similar to Airflow one (and should be much simpler) is a great way to give your users reproducible installs this way. Just a small comment :) -- 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]
