Skip to content

Commit

Permalink
installation: fix invenio_upgrader dependency
Browse files Browse the repository at this point in the history
* FIX Adds missing `invenio_upgrader` dependency and amends past upgrade
  recipes following its separation into standalone package.

Signed-off-by: Tibor Simko <[email protected]>
  • Loading branch information
tiborsimko committed Aug 24, 2015
1 parent 34b32f9 commit b8e49e2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import warnings

from invenio.ext.sqlalchemy import db
from invenio.modules.upgrader.api import op
from invenio_upgrader.api import op

from sqlalchemy_utils.types import URLType

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.

from invenio.legacy.dbquery import run_sql
from invenio.modules.upgrader.api import op
from invenio_upgrader.api import op


depends_on = [u'oauth2server_2014_02_17_initial']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

from invenio.ext.sqlalchemy import db

from invenio.modules.upgrader.api import op
from invenio_upgrader.api import op


depends_on = ['invenio_2015_03_03_tag_value']
Expand Down
2 changes: 2 additions & 0 deletions requirements-devel.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@
#
# -e git+git://github.com/mitsuhiko/werkzeug.git#egg=Werkzeug
# -e git+git://github.com/mitsuhiko/jinja2.git#egg=Jinja2

-e git+git://github.com/inveniosoftware/invenio-upgrader.git#egg=invenio-upgrader
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
# FIXME new oauthlib release after 0.7.2 has some compatible problems with
# the used Flask-Oauthlib version.
'oauthlib==0.7.2',
'invenio-upgrader>=0.1.0',
'invenio-accounts>=0.1.0',
]

Expand Down

0 comments on commit b8e49e2

Please sign in to comment.