Skip to content

Commit

Permalink
Merge pull request #2499 from FasterSpeeding/bump-attrs-ver
Browse files Browse the repository at this point in the history
Bump the minimum attrs ver for @Frozen
  • Loading branch information
harahu authored Dec 13, 2022
2 parents f39d3a4 + 6fb73ea commit 81142e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@
license="MIT OR Apache-2.0",
packages=find_packages(),
install_requires=[
"attrs >= 19.2.0", # for eq
# attrs 19.2.0 adds `eq` option to decorators
# attrs 20.1.0 adds @frozen
"attrs >= 20.1.0",
"sortedcontainers",
"idna",
"outcome",
Expand Down
2 changes: 1 addition & 1 deletion test-requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ typing-extensions; implementation_name == "cpython"

# Trio's own dependencies
cffi; os_name == "nt"
attrs >= 19.2.0
attrs >= 20.1.0
sortedcontainers
idna
outcome
Expand Down

0 comments on commit 81142e1

Please sign in to comment.