Skip to content

Commit

Permalink
Merge pull request #1675 from jenshnielsen/fix_wheel_generation
Browse files Browse the repository at this point in the history
Fix 3.6 wheels by always depending on dataclasses
  • Loading branch information
jenshnielsen authored Aug 19, 2019
2 parents 8354251 + e3e7bb9 commit adab170
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,10 @@ def readme():
'pandas',
'tabulate',
'tqdm',
'applicationinsights'
'applicationinsights',
'dataclasses' # can be removed once we drop support for python 3.6
]

if sys.version_info.minor < 7:
install_requires.append('dataclasses')


setup(name='qcodes',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
Expand Down

0 comments on commit adab170

Please sign in to comment.