Skip to content

Commit

Permalink
fix: dataclass dependency issue
Browse files Browse the repository at this point in the history
  • Loading branch information
yon-mg committed Dec 8, 2020
1 parent 5d1c6a3 commit f6c64cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
"protobuf >= 3.12.0",
"pypandoc >= 1.4",
"PyYAML >= 5.1.1",
"dataclasses<0.8; python_version < '3.7'"
"dataclasses < 0.8; python_version < '3.7'"
),
extras_require={':python_version<"3.7"': ("dataclasses >= 0.4",),},
extras_require={':python_version<"3.7"': ("dataclasses >= 0.4, < 0.8",),},
tests_require=("pyfakefs >= 3.6",),
python_requires=">=3.6",
classifiers=(
Expand Down

0 comments on commit f6c64cc

Please sign in to comment.