We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f39d3a4 + 6fb73ea commit 81142e1Copy full SHA for 81142e1
2 files changed
setup.py
@@ -79,7 +79,9 @@
79
license="MIT OR Apache-2.0",
80
packages=find_packages(),
81
install_requires=[
82
- "attrs >= 19.2.0", # for eq
+ # attrs 19.2.0 adds `eq` option to decorators
83
+ # attrs 20.1.0 adds @frozen
84
+ "attrs >= 20.1.0",
85
"sortedcontainers",
86
"idna",
87
"outcome",
test-requirements.in
@@ -25,7 +25,7 @@ typing-extensions; implementation_name == "cpython"
25
26
# Trio's own dependencies
27
cffi; os_name == "nt"
28
-attrs >= 19.2.0
+attrs >= 20.1.0
29
sortedcontainers
30
idna
31
outcome
0 commit comments