From 1131c11f0d4b381ab46fd5a4134c8590732dd617 Mon Sep 17 00:00:00 2001 From: El De-dog-lo <3859395+fubuloubu@users.noreply.github.com> Date: Wed, 26 May 2021 18:36:37 -0400 Subject: [PATCH] fix: pin `dataclassy` to avoid `AttributeError` with v0.10.1 (#54) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2f07e13e89..a256584bb6 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ install_requires=[ "backports.cached_property ; python_version<'3.8'", "click>=8.0.0", - "dataclassy>=0.8.2,<1.0", + "dataclassy==0.10.0", # see https://github.com/biqqles/dataclassy/issues/46 "eth-account>=0.5.2,<0.6.0", "pluggy>=0.13.1,<1.0", "PyGithub>=1.54,<2.0",