Skip to content

Commit 23aa1ae

Browse files
authored
Update year of copyright (#224)
1 parent 84ae41f commit 23aa1ae

38 files changed

+39
-39
lines changed

.devcontainer/license_header.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2021 - 2024 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
1+
Copyright 2021 - 2025 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
22
for the German Human Genome-Phenome Archive (GHGA)
33

44
Licensed under the Apache License, Version 2.0 (the "License");

.pyproject_generation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright 2021 - 2024 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
2+
Copyright 2021 - 2025 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
33
for the German Human Genome-Phenome Archive (GHGA)
44
55
Licensed under the Apache License, Version 2.0 (the "License");

.readme_generation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright 2021 - 2024 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
2+
Copyright 2021 - 2025 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
33
for the German Human Genome-Phenome Archive (GHGA)
44
55
Licensed under the Apache License, Version 2.0 (the "License");

.template/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright 2021 - 2024 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
2+
Copyright 2021 - 2025 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
33
for the German Human Genome-Phenome Archive (GHGA)
44
55
Licensed under the Apache License, Version 2.0 (the "License");

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 - 2024 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
1+
# Copyright 2021 - 2025 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
22
# for the German Human Genome-Phenome Archive (GHGA)
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

Dockerfile.debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 - 2024 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
1+
# Copyright 2021 - 2025 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
22
# for the German Human Genome-Phenome Archive (GHGA)
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2021 - 2024 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
189+
Copyright 2021 - 2025 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
190190
for the German Human Genome-Phenome Archive (GHGA)
191191

192192
Licensed under the Apache License, Version 2.0 (the "License");

lock/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright 2021 - 2024 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
2+
Copyright 2021 - 2025 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
33
for the German Human Genome-Phenome Archive (GHGA)
44
55
Licensed under the Apache License, Version 2.0 (the "License");

scripts/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 - 2024 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
1+
# Copyright 2021 - 2025 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
22
# for the German Human Genome-Phenome Archive (GHGA)
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

scripts/check_license.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22

3-
# Copyright 2021 - 2024 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
3+
# Copyright 2021 - 2025 Universität Tübingen, DKFZ, EMBL, and Universität zu Köln
44
# for the German Human Genome-Phenome Archive (GHGA)
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -291,7 +291,7 @@ def validate_year_string(year_string: str, min_year: int = MIN_YEAR) -> bool:
291291
if year_string.isnumeric():
292292
return int(year_string) == current_year
293293

294-
# Otherwise, a range (e.g. 2021 - 2024) is expected:
294+
# Otherwise, a range (e.g. 2021 - 2025) is expected:
295295
match = re.match(r"(\d+) - (\d+)", year_string)
296296

297297
if not match:

0 commit comments

Comments
 (0)