Skip to content

Commit

Permalink
installation: remove invenio-admin dependecy
Browse files Browse the repository at this point in the history
  • Loading branch information
lnielsen committed Mar 21, 2018
1 parent 1a3b2ff commit d1c1546
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
13 changes: 4 additions & 9 deletions setup.py
Expand Up @@ -16,11 +16,9 @@
history = open('CHANGES.rst').read()

tests_require = [
'Flask-CeleryExt>=0.2.2',
'Flask-Mail>=0.9.1',
'check-manifest>=0.25',
'coverage>=4.0',
'isort>=4.2.2',
'isort>=4.3.0',
'mock>=2.0.0',
'pydocstyle>=1.0.0',
'pytest-cov>=1.8.0',
Expand All @@ -34,9 +32,6 @@
':python_version=="2.7"': [
'ipaddr>=2.1.11',
],
'celery': [
'celery>=3.1.0,<4.0',
],
'docs': [
'Sphinx>=1.4.2,<1.6',
],
Expand All @@ -49,9 +44,6 @@
'sqlite': [
'invenio-db[versioning]>=1.0.0b8',
],
'admin': [
'invenio-admin>=1.0.0b3',
],
'tests': tests_require,
}

Expand All @@ -69,10 +61,13 @@
]

install_requires = [
'Flask-Admin>=1.3.0',
'Flask-BabelEx>=0.9.3',
'Flask-Breadcrumbs>=0.3.0',
'Flask-CeleryExt>=0.3.0',
'Flask-KVSession>=0.6.1',
'Flask-Login>=0.3.0',
'Flask-Mail>=0.9.1',
'Flask-Menu>=0.4.0',
'Flask-Security>=3.0.0',
'Flask-WTF>=0.13.1',
Expand Down
1 change: 0 additions & 1 deletion tests/test_admin.py
Expand Up @@ -10,7 +10,6 @@
from flask import current_app, session, url_for
from flask_admin import menu
from flask_security.utils import hash_password
from invenio_admin import InvenioAdmin
from invenio_db import db
from werkzeug.local import LocalProxy

Expand Down

0 comments on commit d1c1546

Please sign in to comment.