Skip to content

Commit 17a8ce1

Browse files
authored
Merge pull request #252 from orviz/non_ascii_chars_support
Fix UTF-8 representation of non-ASCII characters
2 parents ce63601 + 8219ee4 commit 17a8ce1

44 files changed

Lines changed: 93 additions & 1 deletion

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CITATION.cff

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ authors:
3434
- family-names: Leo
3535
given-names: Simone
3636
orcid: https://orcid.org/0000-0001-8271-5429
37+
- family-names: Orviz
38+
given-names: Pablo
39+
orcid: https://orcid.org/0000-0002-2473-6405
3740
- family-names: Pireddu
3841
given-names: Luca
3942
orcid: https://orcid.org/0000-0002-4663-5613

README.md

Lines changed: 1 addition & 0 deletions

examples/fastapi/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Copyright 2024-2026 National Institute of Informatics (NII), JP
88
# Copyright 2025-2026 Senckenberg Society for Nature Research (SGN), DE
99
# Copyright 2025-2026 European Molecular Biology Laboratory (EMBL), Heidelberg, DE
10+
# Copyright 2026 Spanish National Research Council (CSIC), ES
1011
#
1112
# Licensed under the Apache License, Version 2.0 (the "License");
1213
# you may not use this file except in compliance with the License.

examples/read_test_metadata.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Copyright 2024-2026 National Institute of Informatics (NII), JP
88
# Copyright 2025-2026 Senckenberg Society for Nature Research (SGN), DE
99
# Copyright 2025-2026 European Molecular Biology Laboratory (EMBL), Heidelberg, DE
10+
# Copyright 2026 Spanish National Research Council (CSIC), ES
1011
#
1112
# Licensed under the Apache License, Version 2.0 (the "License");
1213
# you may not use this file except in compliance with the License.

rocrate/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# Copyright 2024-2026 National Institute of Informatics (NII), JP
1010
# Copyright 2025-2026 Senckenberg Society for Nature Research (SGN), DE
1111
# Copyright 2025-2026 European Molecular Biology Laboratory (EMBL), Heidelberg, DE
12+
# Copyright 2026 Spanish National Research Council (CSIC), ES
1213
#
1314
# Licensed under the Apache License, Version 2.0 (the "License");
1415
# you may not use this file except in compliance with the License.
@@ -42,6 +43,7 @@
4243
'Sebastiaan Huber',
4344
'Bruno Kinoshita',
4445
'Simone Leo',
46+
'Pablo Orviz',
4547
'Luca Pireddu',
4648
'Laura Rodríguez-Navas',
4749
'Raül Sirvent',
@@ -58,6 +60,7 @@
5860
Copyright 2024-2026 National Institute of Informatics (NII), JP
5961
Copyright 2025-2026 Senckenberg Society for Nature Research (SGN), DE
6062
Copyright 2025-2026 European Molecular Biology Laboratory (EMBL), Heidelberg, DE
63+
Copyright 2026 Spanish National Research Council (CSIC), ES
6164
"""
6265
__license__ = ("Apache License, version 2.0 "
6366
"<https://www.apache.org/licenses/LICENSE-2.0>")

rocrate/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Copyright 2024-2026 National Institute of Informatics (NII), JP
88
# Copyright 2025-2026 Senckenberg Society for Nature Research (SGN), DE
99
# Copyright 2025-2026 European Molecular Biology Laboratory (EMBL), Heidelberg, DE
10+
# Copyright 2026 Spanish National Research Council (CSIC), ES
1011
#
1112
# Licensed under the Apache License, Version 2.0 (the "License");
1213
# you may not use this file except in compliance with the License.

rocrate/memory_buffer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Copyright 2024-2026 National Institute of Informatics (NII), JP
88
# Copyright 2025-2026 Senckenberg Society for Nature Research (SGN), DE
99
# Copyright 2025-2026 European Molecular Biology Laboratory (EMBL), Heidelberg, DE
10+
# Copyright 2026 Spanish National Research Council (CSIC), ES
1011
#
1112
# Licensed under the Apache License, Version 2.0 (the "License");
1213
# you may not use this file except in compliance with the License.

rocrate/metadata.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Copyright 2024-2026 National Institute of Informatics (NII), JP
88
# Copyright 2025-2026 Senckenberg Society for Nature Research (SGN), DE
99
# Copyright 2025-2026 European Molecular Biology Laboratory (EMBL), Heidelberg, DE
10+
# Copyright 2026 Spanish National Research Council (CSIC), ES
1011
#
1112
# Licensed under the Apache License, Version 2.0 (the "License");
1213
# you may not use this file except in compliance with the License.

rocrate/model/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Copyright 2024-2026 National Institute of Informatics (NII), JP
88
# Copyright 2025-2026 Senckenberg Society for Nature Research (SGN), DE
99
# Copyright 2025-2026 European Molecular Biology Laboratory (EMBL), Heidelberg, DE
10+
# Copyright 2026 Spanish National Research Council (CSIC), ES
1011
#
1112
# Licensed under the Apache License, Version 2.0 (the "License");
1213
# you may not use this file except in compliance with the License.

rocrate/model/computationalworkflow.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# Copyright 2024-2026 National Institute of Informatics (NII), JP
1010
# Copyright 2025-2026 Senckenberg Society for Nature Research (SGN), DE
1111
# Copyright 2025-2026 European Molecular Biology Laboratory (EMBL), Heidelberg, DE
12+
# Copyright 2026 Spanish National Research Council (CSIC), ES
1213
#
1314
# Licensed under the Apache License, Version 2.0 (the "License");
1415
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)