-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca5a3f1
commit e4a9337
Showing
8 changed files
with
54 additions
and
46 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (C) 2023 Graz University of Technology. | ||
# Copyright (C) 2023-2024 Graz University of Technology. | ||
# | ||
# invenio-global-search is free software; you can redistribute it and/or modify | ||
# it under the terms of the MIT License; see LICENSE file for more details. | ||
|
||
"""Global Search rdm searializer.""" | ||
|
||
# the problem is the parent does not exists in this stage | ||
# from invenio_rdm_records.resources.serializers.dublincore import ( | ||
# DublinCoreJSONSerializer as RDMRecordJSONSerializer, | ||
# ) | ||
|
||
from .serializer import RDMRecordJSONSerializer | ||
|
||
__all__ = ("RDMRecordJSONSerializer",) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,25 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (C) 2023 Graz University of Technology. | ||
# Copyright (C) 2023-2024 Graz University of Technology. | ||
# | ||
# invenio-global-search is free software; you can redistribute it and/or modify | ||
# it under the terms of the MIT License; see LICENSE file for more details. | ||
|
||
[build-system] | ||
requires = ["setuptools", "wheel", "babel>2.8"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.ruff] | ||
exclude = ["docs"] | ||
|
||
[tool.ruff.lint] | ||
select = ["ALL"] | ||
ignore = [ | ||
"ANN101", "ANN102", | ||
"D203", "D211", "D212", "D213", | ||
"FA102", | ||
"PLR0913", | ||
"TCH001", "TCH002", "TCH003", | ||
"TID252", | ||
"UP009", | ||
] |