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 31c48e4 commit e03ae76
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion invenio_jobs/services/results.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2024 CERN.
# Copyright (C) 2024 Graz University of Technology.
#
# Invenio-Jobs is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand All @@ -9,13 +10,19 @@

from collections.abc import Iterable, Sized

from flask_sqlalchemy import Pagination
from invenio_records_resources.services.records.results import (
ExpandableField,
RecordItem,
RecordList,
)

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


class Item(RecordItem):
"""Single item result."""
Expand Down

0 comments on commit e03ae76

Please sign in to comment.