Skip to content

Commit

Permalink
Also limit importlib on Python 3.9 (#30069)
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
potiuk authored and ephraimbuddy committed Mar 13, 2023
1 parent 6fede98 commit 2c09bc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ install_requires =
httpx
# Importlib-metadata 5 is breaking Celery import due to regression it introduced
# This was tracked and fixed in https://github.com/celery/celery/pull/7785 but it is not released yet
# We can remove the < 5.0.0 limitation hwne Celery 5.3.0 gets released and we bump celeryt o >= 5.3.0
importlib_metadata>=1.7,<5.0.0;python_version<"3.9"
# We can remove the < 5.0.0 limitation when Celery 5.3.0 gets released and we bump celeryt o >= 5.3.0
importlib_metadata>=1.7,<5.0.0;python_version<="3.9"
importlib_resources>=5.2;python_version<"3.9"
itsdangerous>=2.0
jinja2>=3.0.0
Expand Down

0 comments on commit 2c09bc8

Please sign in to comment.