From 1e9a7fdc70fe8e8eddb61e19a6eadf3b69719cf0 Mon Sep 17 00:00:00 2001 From: Olivier Date: Wed, 5 Jan 2022 16:05:07 +0000 Subject: [PATCH] Use ~= version specifier --- synapse_antispam/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synapse_antispam/setup.py b/synapse_antispam/setup.py index 3cc00a8..56e89ac 100644 --- a/synapse_antispam/setup.py +++ b/synapse_antispam/setup.py @@ -8,6 +8,6 @@ setup( include_package_data=True, zip_safe=True, install_requires=[ - "matrix-common >= 1.0.0" + "matrix-common ~= 1.0" ], )