potiuk commented on PR #25689: URL: https://github.com/apache/airflow/pull/25689#issuecomment-1213293247
> Build error is caused by trying to build numpy on 3.10 (numpy still doesn't have a wheel for 3.10?!) Bumping cattrs unblocked numpy to be bumped to 1,23.* (from 1.22.4) which apparently has problem with 3,10. I thin k 1.22.4 also does not support 3.10 fully - but it did not have a detection of that :shrug: numpy is only needed in oracle provider it seems (BTW. we should get rid of it - I believe it is only needed there to do detection The solution @romsej will be to change in https://github.com/apache/airflow/blob/main/airflow/providers/oracle/provider.yaml ``` dependencies: - numpy ``` to: ``` dependencies: - numpy;python_version<"3.10" - numpy<1.23;python_version>="3.10" ``` But I will try to get rid of it completely in parallel anyway -- 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]
