Skip to content

Commit

Permalink
fix: add compatibility layer to move to flask>=3
Browse files Browse the repository at this point in the history
* flask-sqlalchemy moved pagination.

* this change has been added to have a smooth migration to flask>=3.0.0
  without creating a hard cut and major versions release.
  • Loading branch information
utnapischtim committed Sep 4, 2024
1 parent 584ce65 commit a9e3536
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion invenio_pages/services/results.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2023 CERN.
# Copyright (C) 2024 Graz University of Technology.
#
# Invenio-Pages is free software; you can redistribute it and/or
# modify it under the terms of the MIT License; see LICENSE file for more
# details.

"""Results for the requests service."""

from flask_sqlalchemy import Pagination
try:
# flask_sqlalchemy<3.0.0
from flask_sqlalchemy import Pagination
except ImportError:
# flask_sqlalchemy>=3.0.0
from flask_sqlalchemy.pagination import Pagination

from invenio_records_resources.services.records.results import RecordItem, RecordList


Expand Down

0 comments on commit a9e3536

Please sign in to comment.