Skip to content

Commit

Permalink
build(deps): require "attrs<21" on Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed committed May 22, 2021
1 parent 3692e2b commit 25d6810
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -7,7 +7,9 @@
"py>=1.5.0",
"six>=1.10.0",
"packaging",
"attrs>=17.4.0",
# attrs 21.1.0 is broken on Python 3.4, but not marked as such.
'attrs>=17.4.0,<21;python_version=="3.4"',
'attrs>=17.4.0;python_version>="3.5"',
'more-itertools>=4.0.0,<6.0.0;python_version<="2.7"',
'more-itertools>=4.0.0;python_version>"2.7"',
"atomicwrites>=1.0",
Expand Down

0 comments on commit 25d6810

Please sign in to comment.