potiuk commented on code in PR #46891:
URL: https://github.com/apache/airflow/pull/46891#discussion_r2160049635


##########
providers/apache/hdfs/pyproject.toml:
##########
@@ -60,7 +61,8 @@ dependencies = [
     "apache-airflow>=2.10.0",
     'hdfs[avro,dataframe,kerberos]>=2.5.4;python_version<"3.12"',
     'hdfs[avro,dataframe,kerberos]>=2.7.3;python_version>="3.12"',
-    "pandas>=2.1.2,<2.2",
+    'pandas>=2.1.2; python_version <"3.13"',
+    'pandas>=2.2.0; python_version >="3.13"',

Review Comment:
   2.2.3 is fine - but I would leave it lower for lower version. We cannot 
entirely rely on metadata because when go to "lowest" version - it coul be that 
that version did not yet have != 3.13 exclusion. Most libraries do not add 
exclusions in advance - so something relased a year ago will not have !=3.13 
and when we try to get the lowest version it might fail when building.



-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to