Make DOI optional and test zenodo release

This commit is contained in:
2026-08-17 11:32:45 +01:00
parent f4207fff72
commit 5b75ac16b6
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -8,4 +8,4 @@
"""Metadata for this python module."""
__version__ = "2026.8.14.1"
__version__ = "2026.8.14.2"
+6
View File
@@ -380,3 +380,9 @@ OAISERVER_ADMIN_EMAILS = [
It **must** include one or more instances.
"""
# Make DOI optional
from invenio_rdm_records.config import RDM_PERSISTENT_IDENTIFIERS
import copy
RDM_PERSISTENT_IDENTIFIERS = copy.deepcopy(RDM_PERSISTENT_IDENTIFIERS)
RDM_PERSISTENT_IDENTIFIERS["doi"]["required"] = False