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

Commit

Permalink
Don't depend on dataclasses in Python >= 3.7 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
hannes-ucsc committed May 20, 2020
1 parent cac9203 commit 8357cf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version="1.0b24.dev1",
license='MIT',
install_requires=[
'dataclasses >= 0.6'
"dataclasses >= 0.6;python_version<'3.7'"
],
# Not using tests_require because that installs the test requirements into .eggs, not the virtualenv
extras_require={
Expand Down

0 comments on commit 8357cf0

Please sign in to comment.