You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/08/12 20:15:16 UTC

[GitHub] [airflow] kaxil commented on a change in pull request #17575: Make `pandas` an optional core dependency

kaxil commented on a change in pull request #17575:
URL: https://github.com/apache/airflow/pull/17575#discussion_r688053575



##########
File path: setup.py
##########
@@ -395,6 +395,11 @@ def write_version(filename: str = os.path.join(*[my_dir, "airflow", "git_version
 pagerduty = [
     'pdpyras>=4.1.2,<5',
 ]
+pandas = [
+    # Pandas stopped releasing 3.6 binaries for 1.2.* series.
+    'pandas>=0.17.1, <1.2;python_version<"3.7"',
+    'pandas>=0.17.1, <2.0;python_version>="3.7"',

Review comment:
       Good point, updated




-- 
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-unsubscribe@airflow.apache.org

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