Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
Pin attrs to >=17.4.0 for @DataClass use
Browse files Browse the repository at this point in the history
  • Loading branch information
ambv committed Mar 22, 2018
1 parent 79b720c commit c7c8c4f
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 69 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ verify_ssl = true
name = "pypi"

[packages]
attrs = "*"
attrs = ">=17.4.0"
click = "*"
setuptools = ">=38.6.0"

Expand Down
130 changes: 63 additions & 67 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def get_version():
package_data={'blib2to3': ['*.txt']},
python_requires=">=3.6",
zip_safe=False,
install_requires=['click', 'attrs'],
install_requires=['click', 'attrs>=17.4.0'],
test_suite='tests.test_black',
classifiers=[
'Development Status :: 3 - Alpha',
Expand Down

0 comments on commit c7c8c4f

Please sign in to comment.