diff options
author | David Robertson <davidr@element.io> | 2022-03-04 22:40:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-04 22:40:24 +0000 |
commit | d2ef1a79cf942b2f8c1a4724eb0c4bca0b60edbe (patch) | |
tree | ac4e204a6e90e9db4027b17c93dcdf8319d627e2 /synapse | |
parent | Don't impose version checks on dev extras at runtime (#12129) (diff) | |
download | synapse-d2ef1a79cf942b2f8c1a4724eb0c4bca0b60edbe.tar.xz |
Relax version guard for packaging (#12166)
It’s just occurred to me that #12088 pulled in the “packaging” package (~=21.3). I pulled in the newest version I had at the time. I only use it for packaging.requirements.Requirements. Which was added in packaging 16.1: https://github.com/pypa/packaging/releases/tag/16.1 https://pkgs.org/download/python3-packaging suggests that the oldest version we care about is 17.1 in Ubuntu Bionic. So I think with this bound we're hunky dory.
Diffstat (limited to 'synapse')
-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 = { |