Skip to content

Commit 81142e1

Browse files
authored
Merge pull request #2499 from FasterSpeeding/bump-attrs-ver
Bump the minimum attrs ver for @Frozen
2 parents f39d3a4 + 6fb73ea commit 81142e1

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@
7979
license="MIT OR Apache-2.0",
8080
packages=find_packages(),
8181
install_requires=[
82-
"attrs >= 19.2.0", # for eq
82+
# attrs 19.2.0 adds `eq` option to decorators
83+
# attrs 20.1.0 adds @frozen
84+
"attrs >= 20.1.0",
8385
"sortedcontainers",
8486
"idna",
8587
"outcome",

test-requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ typing-extensions; implementation_name == "cpython"
2525

2626
# Trio's own dependencies
2727
cffi; os_name == "nt"
28-
attrs >= 19.2.0
28+
attrs >= 20.1.0
2929
sortedcontainers
3030
idna
3131
outcome

0 commit comments

Comments
 (0)