pganssle opened a new issue #11059: URL: https://github.com/apache/airflow/issues/11059
I was looking at your `setup.py` to see if you would be affected by forthcoming breaking changes in `tzlocal` (you will not because you have already pinned to an old version anyway), and I noticed that while your [classifiers say that you support Python 3.6-3.8](https://github.com/apache/airflow/blob/19d781f2fdcc21bfd1be98ece5a864bf342c2adc/setup.py#L789-L791), your [`python_requires` says 3.6 only](https://github.com/apache/airflow/blob/19d781f2fdcc21bfd1be98ece5a864bf342c2adc/setup.py#L805). I'm not sure if you're aware, but `pip install .` on anything except for Python 3.6 will _refuse to install this package_, and one reason that `setup.py install` may still work is that `setup.py install` is deprecated and it is no longer being maintained. You may want to loosen the bounds on the `python_requires`, because it is not as if `pip` can automatically satisfy the dependency 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. For queries about this service, please contact Infrastructure at: [email protected]
