Skip to content

Commit 1b091b3

Browse files
committed
Harmonise and update copyright notices
1 parent cd200af commit 1b091b3

18 files changed

Lines changed: 70 additions & 14 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Authors: Andrew P. Davison, Onur Ates, Nico Feld, Yann Zerlaut, Glynis Mattheisen, Peyman Najafi
88

9-
Copyright CNRS 2019-2025
9+
Copyright 2018-2026 CNRS and fairgraph authors and/or their employers
1010

1111
**fairgraph** is a Python library for working with metadata
1212
in the EBRAINS Knowledge Graph, with a particular focus on data reuse,

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# -- Project information -----------------------------------------------------
2828

2929
project = "fairgraph"
30-
copyright = "2018-2025, Andrew P. Davison, Onur Ates, Yann Zerlaut, Glynis Mattheisen, Peyman Najafi"
30+
copyright = "2018-2026, CNRS and fairgraph authors and/or their employers"
3131
author = author_list
3232

3333
# The full version, including alpha/beta/rc tags

fairgraph/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Authors: Andrew Davison et al., CNRS (see authors.rst)
55
66
7-
Copyright 2018-2024 CNRS
7+
Copyright 2018-2026 CNRS and fairgraph authors and/or their employers
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

fairgraph/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
and contain code common to sub-classes, to avoid code duplication.
44
"""
55

6-
# Copyright 2018-2024 CNRS
6+
# Copyright 2018-2026 CNRS and fairgraph authors and/or their employers
77

88
# Licensed under the Apache License, Version 2.0 (the "License");
99
# you may not use this file except in compliance with the License.

fairgraph/caching.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
to avoid making unnecessary API calls.
44
"""
55

6-
# Copyright 2018-2024 CNRS
6+
# Copyright 2018-2026 CNRS and fairgraph authors and/or their employers
77

88
# Licensed under the Apache License, Version 2.0 (the "License");
99
# you may not use this file except in compliance with the License.

fairgraph/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
EBRAINS KG core API.
55
"""
66

7-
# Copyright 2018-2024 CNRS
7+
# Copyright 2018-2026 CNRS and fairgraph authors and/or their employers
88

99
# Licensed under the Apache License, Version 2.0 (the "License");
1010
# you may not use this file except in compliance with the License.

fairgraph/collection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
that knows how to upload metadata to the KG.
44
"""
55

6-
# Copyright 2018-2024 CNRS
6+
# Copyright 2018-2026 CNRS and fairgraph authors and/or their employers
77

88
# Licensed under the Apache License, Version 2.0 (the "License");
99
# you may not use this file except in compliance with the License.

fairgraph/embedded.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
but are rather embedded within another metadata instance.
55
"""
66

7-
# Copyright 2018-2024 CNRS
7+
# Copyright 2018-2026 CNRS and fairgraph authors and/or their employers
88

99
# Licensed under the Apache License, Version 2.0 (the "License");
1010
# you may not use this file except in compliance with the License.

fairgraph/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Definition of specific Exceptions.
33
"""
44

5-
# Copyright 2018-2024 CNRS
5+
# Copyright 2018-2026 CNRS and fairgraph authors and/or their employers
66

77
# Licensed under the Apache License, Version 2.0 (the "License");
88
# you may not use this file except in compliance with the License.

fairgraph/fields.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# Copyright 2018-2026 CNRS and fairgraph authors and/or their employers
2+
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
115
from warnings import warn
216

317
from .properties import Property as Field

0 commit comments

Comments
 (0)