Skip to content

Commit

Permalink
setups added wheel dev dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
tgbugs committed Apr 6, 2019
1 parent db3501b commit 63c6e8f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion htmlfn/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def find_version(filename):
packages=['htmlfn'],
python_requires='>=3.6',
tests_require=tests_require,
extras_require={'dev': ['pytest-cov'],
extras_require={'dev': ['pytest-cov', 'wheel'],
'test': tests_require,
},
)
2 changes: 1 addition & 1 deletion librdflib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def find_version(filename):
install_requires=[
'rdflib', # really 5.0.0 if my changes go in but dev < 5
],
extras_require={'dev': ['pytest-cov'],
extras_require={'dev': ['pytest-cov', 'wheel'],
'test': tests_require,
},
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion neurondm/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def find_version(filename):
install_requires=[
'pyontutils>=0.1.0',
],
extras_require={'dev': ['pytest-cov'],
extras_require={'dev': ['pytest-cov', 'wheel'],
'test': tests_require,
'notebook': ['jupyter'],
},
Expand Down
4 changes: 3 additions & 1 deletion nifstd/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ def find_version(filename):
],
extras_require={'dev': ['mysql-connector',
'protobuf',
'pytest-cov',],
'pytest-cov',
'wheel',
],
'spell': ['hunspell'],
'test': tests_require,
},
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def find_version(filename):
'requests',
'ttlser',
],
extras_require={'dev': ['pytest-cov'],
extras_require={'dev': ['pytest-cov', 'wheel'],
'spell': ['hunspell'],
'test': tests_require,
},
Expand Down
2 changes: 1 addition & 1 deletion ttlser/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def find_version(filename):
install_requires=[
'neurdflib', # really 5.0.0 if my changes go in but dev < 5
],
extras_require={'dev': ['pytest-cov'],
extras_require={'dev': ['pytest-cov', 'wheel'],
'ttlfmt': ['docopt',
'joblib', # FIXME better if this were optional? or just use a PPE?
],
Expand Down

0 comments on commit 63c6e8f

Please sign in to comment.