Skip to content

Commit

Permalink
fix missing comma in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zeratax committed Jun 12, 2020
1 parent 25c641f commit 588025d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion matrix_registration/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
from . import tokens
from . import config

__version__ = '0.6.0.dev0'
__version__ = '0.6.0.dev1'
name = 'matrix_registration'
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,11 @@ def find_version(*file_paths):
install_requires=[
"appdirs>=1.4.3",
"Flask>=1.0.2",
"Flask-SQLAlchemy>=2.4.1",
"flask-cors>=3.0.7",
"flask-httpauth>=3.2.4",
"flask-limiter>=1.0.1",
"psycopg2-binary>=2.8.4"
"psycopg2-binary>=2.8.4",
"python-dateutil>=2.8.1",
"PyYAML>=5.1",
"requests>=2.21.0",
Expand Down

0 comments on commit 588025d

Please sign in to comment.