Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Require parameterized package version to be at least 0.7.0.
Browse files Browse the repository at this point in the history
Older versions have no parameterized_class decorator.

Signed-off-by: Oleg Girko <ol@infoserver.lv>
  • Loading branch information
Oleg Girko committed Jun 12, 2020
1 parent a3fbc23 commit 17d1bfd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/7680.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Require `parameterized` package version to be at least 0.7.0.
3 changes: 2 additions & 1 deletion synapse/python_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@
"oidc": ["authlib>=0.14.0"],
"systemd": ["systemd-python>=231"],
"url_preview": ["lxml>=3.5.0"],
"test": ["mock>=2.0", "parameterized"],
# parameterized_class decorator was introduced in parameterized 0.7.0
"test": ["mock>=2.0", "parameterized>=0.7.0"],
"sentry": ["sentry-sdk>=0.7.2"],
"opentracing": ["jaeger-client>=4.0.0", "opentracing>=2.2.0"],
"jwt": ["pyjwt>=1.6.4"],
Expand Down

0 comments on commit 17d1bfd

Please sign in to comment.