Skip to content

Commit

Permalink
Issue ChristianTremblay#103: setup.py: Fix syntax error
Browse files Browse the repository at this point in the history
`extras_require` should be a `dict` not a `list`, Duh!
  • Loading branch information
sjlongland committed Dec 19, 2020
1 parent a358f58 commit 36bd18a
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 @@ -32,10 +32,10 @@
"semver",
"certifi",
],
extras_require=[
extras_require={
'pandas': ['pandas'],
'tornado': ['tornado>=4.0']
],
},
packages=[
"pyhaystack",
"pyhaystack.client",
Expand Down

0 comments on commit 36bd18a

Please sign in to comment.