Skip to content

Commit 2c09bc8

Browse files
potiukephraimbuddy
authored andcommitted
Also limit importlib on Python 3.9 (#30069)
The original #29924 fix containt both > and < condition on Python 3.9 thus the limit did not apply to Python 3.9 (cherry picked from commit 6e2bdcf)
1 parent 6fede98 commit 2c09bc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ install_requires =
101101
httpx
102102
# Importlib-metadata 5 is breaking Celery import due to regression it introduced
103103
# This was tracked and fixed in https://github.com/celery/celery/pull/7785 but it is not released yet
104-
# We can remove the < 5.0.0 limitation hwne Celery 5.3.0 gets released and we bump celeryt o >= 5.3.0
105-
importlib_metadata>=1.7,<5.0.0;python_version<"3.9"
104+
# We can remove the < 5.0.0 limitation when Celery 5.3.0 gets released and we bump celeryt o >= 5.3.0
105+
importlib_metadata>=1.7,<5.0.0;python_version<="3.9"
106106
importlib_resources>=5.2;python_version<"3.9"
107107
itsdangerous>=2.0
108108
jinja2>=3.0.0

0 commit comments

Comments
 (0)