Skip to content

Commit

Permalink
Fix case for Sanic dependency
Browse files Browse the repository at this point in the history
On PyPI it has a capital letter: https://pypi.python.org/pypi/Sanic

I think this is why the list of "Requires Distributions" on https://pypi.python.org/pypi/datasette links to all of the other dependencies but does not link to Sanic.
  • Loading branch information
Simon Willison committed Nov 17, 2017
1 parent 8b4c600 commit b9af49b
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 @@ -14,7 +14,7 @@
install_requires=[
'click==6.7',
'click-default-group==1.2',
'sanic==0.6.0',
'Sanic==0.6.0',
'Jinja2==2.10',
'sanic-jinja2==0.5.5',
'hupper==1.0',
Expand Down

1 comment on commit b9af49b

@simonw
Copy link
Owner

@simonw simonw commented on b9af49b Nov 17, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

datasette_0_12___python_package_index

Please sign in to comment.