From d750f9f8a593cdf9929e03d8da1d35e680513526 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Thu, 20 Sep 2018 21:35:34 -0400 Subject: Removed use of type argument in attr.ib() since that wasn't added until version 17.3.0. Also: - In setup.py require version of attrs to be >= 16.3.0 - I think this is right, if there are any issues we can bump this to version 17.1.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 53645eff..2947c2ea 100755 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ Topic :: Software Development :: Libraries :: Python Modules SETUP_REQUIRES = ['setuptools_scm'] -INSTALL_REQUIRES = ['pyperclip >= 1.5.27', 'colorama', 'attrs'] +INSTALL_REQUIRES = ['pyperclip >= 1.5.27', 'colorama', 'attrs >= 16.3.0'] EXTRAS_REQUIRE = { # Windows also requires pyreadline to ensure tab completion works -- cgit v1.2.1