From c6c4a0aa52397bb85500c1e087c3545fc77bcac8 Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Thu, 14 Jan 2021 11:14:30 +0100 Subject: [PATCH] bugfix(ci): add invenio-app-rdm and sqlalchemy-continuum to install_requires those install_requires where missing to use the RECORDS_UI_ENPOINTS from invenio-app-rdm.config --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 91e09ab..5530fb7 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ history = open("CHANGES.rst").read() tests_require = [ "pytest-invenio>=1.4.0", - 'invenio-app>=1.3.0,<2.0.0', + "invenio-app>=1.3.0,<2.0.0", "psycopg2-binary>=2.8.6", ] @@ -53,6 +53,8 @@ install_requires = [ "invenio-i18n>=1.2.0", "elasticsearch_dsl>=7.2.1", "invenio_search>=1.3.1", + "invenio_app_rdm>=0.18.8", + "sqlalchemy-continuum>=1.3.11", ] packages = find_packages()