Skip to content
Snippets Groups Projects
Unverified Commit 24f07a83 authored by Erik Johnston's avatar Erik Johnston Committed by GitHub
Browse files

Pin attrs to <21.1.0 (#9937)

Fixes #9936
parent 0644ac09
No related branches found
No related tags found
No related merge requests found
Fix bug where `/sync` would break if using the latest version of `attrs` dependency, by pinning to a previous version.
......@@ -78,7 +78,8 @@ REQUIREMENTS = [
# we use attr.validators.deep_iterable, which arrived in 19.1.0 (Note:
# Fedora 31 only has 19.1, so if we want to upgrade we should wait until 33
# is out in November.)
"attrs>=19.1.0",
# Note: 21.1.0 broke `/sync`, see #9936
"attrs>=19.1.0,<21.1.0",
"netaddr>=0.7.18",
"Jinja2>=2.9",
"bleach>=1.4.3",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment