diff options
author | Richard van der Hoff <richard@matrix.org> | 2022-03-04 22:40:51 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2022-03-04 22:40:51 +0000 |
commit | 00a67f831adc7c01fcced6269cb5790816252493 (patch) | |
tree | 61c126514e6a1c8ebe81bd5ac38efe51e622b26a /synapse/python_dependencies.py | |
parent | Reduce to-device queries for /sync. (#12163) (diff) | |
parent | Relax version guard for packaging (#12166) (diff) | |
download | synapse-00a67f831adc7c01fcced6269cb5790816252493.tar.xz |
Merge remote-tracking branch 'origin/release-v1.54' into develop
Diffstat (limited to 'synapse/python_dependencies.py')
-rw-r--r-- | synapse/python_dependencies.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index 8f48a33936..b40a7bbb76 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -83,8 +83,8 @@ REQUIREMENTS = [ # ijson 3.1.4 fixes a bug with "." in property names "ijson>=3.1.4", "matrix-common~=1.1.0", - # For runtime introspection of our dependencies - "packaging~=21.3", + # We need packaging.requirements.Requirement, added in 16.1. + "packaging>=16.1", ] CONDITIONAL_REQUIREMENTS = { |