Skip to content

Commit

Permalink
Merge pull request #25 from pquentin/attrs-19.2.0
Browse files Browse the repository at this point in the history
Fix compatibility with attrs 19.2.0
  • Loading branch information
njsmith committed Oct 2, 2019
2 parents 683e3a0 + 15ac7aa commit a22bdee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
license='MIT -or- Apache License 2.0',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=['attrs'],
install_requires=['attrs>=19.2.0'],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
keywords='result',
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion src/outcome/_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Outcome(ABC):
hashable.
"""
_unwrapped = attr.ib(default=False, cmp=False, init=False)
_unwrapped = attr.ib(default=False, eq=False, init=False)

def _set_unwrapped(self):
if self._unwrapped:
Expand Down

0 comments on commit a22bdee

Please sign in to comment.