Skip to content

Commit

Permalink
cli: remove invenio-pidstore dep
Browse files Browse the repository at this point in the history
  • Loading branch information
ntarocco authored and lnielsen committed Feb 13, 2020
1 parent 722347c commit 7394381
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 8 deletions.
2 changes: 0 additions & 2 deletions invenio_records/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@
Further documentation available Documentation:
https://invenio-records.readthedocs.io/
.. _InvenioPIDStore: https://invenio-pidstore.readthedocs.io/
Initialization
--------------
Expand Down
1 change: 0 additions & 1 deletion requirements-devel.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@
# under the terms of the MIT License; see LICENSE file for more details.

-e git+git://github.com/inveniosoftware/invenio-db.git#egg=invenio-db
-e git+git://github.com/inveniosoftware/invenio-pidstore.git#egg=invenio-pidstore
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@
]

extras_require = {
'pidstore': [
'invenio-pidstore>=1.0.0',
],
'docs': [
'Sphinx>=1.7.2',
],
Expand Down Expand Up @@ -64,6 +61,7 @@

install_requires = [
'blinker>=1.4',
'Flask-BabelEx>=0.9.3',
'flask-celeryext>=0.2.2',
'flask>=0.11.1',
'jsonpatch>=1.15',
Expand Down
2 changes: 0 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
from flask_celeryext import FlaskCeleryExt
from invenio_db import InvenioDB
from invenio_db import db as db_
from invenio_pidstore import InvenioPIDStore
from sqlalchemy.ext.compiler import compiles
from sqlalchemy.schema import DropConstraint, DropSequence, DropTable
from sqlalchemy_utils.functions import create_database, database_exists
Expand Down Expand Up @@ -63,7 +62,6 @@ def app(request):
FlaskCeleryExt(app_)
InvenioDB(app_)
InvenioRecords(app_)
InvenioPIDStore(app_)

with app_.app_context():
yield app_
Expand Down

0 comments on commit 7394381

Please sign in to comment.