uranusjr commented on pull request #18228: URL: https://github.com/apache/airflow/pull/18228#issuecomment-919623649
I’ve applied the importlib-resources version bump. My change is different from #18209 in several ways: 1. I bumped to 5.2 instead of 5.0. This is because the mock behavioural change is introduced in 5.2. 2. I removed the `importlib-resources` entry from `setup.py`. This package is already installed unconditionally (in `install_requires`) and does not need to be listed in the `devel` extra. 3. I added the `python_version < 3.7'` marker. We only import `importlib_resources` for Python 3.6 (in `provider_manager.py`) so having it installed on 3.7+ is useless. -- 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]
