Skip to content

Commit 5080f25

Browse files
authored
CLN remove unneeded copyrights (scikit-learn#29257)
1 parent 82974a2 commit 5080f25

File tree

9 files changed

+11
-22
lines changed

9 files changed

+11
-22
lines changed

doc/about.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ In 2010 Fabian Pedregosa, Gael Varoquaux, Alexandre Gramfort and Vincent
1414
Michel of INRIA took leadership of the project and made the first public
1515
release, February the 1st 2010. Since then, several releases have appeared
1616
following an approximately 3-month cycle, and a thriving international
17-
community has been leading the development.
17+
community has been leading the development. As a result, INRIA holds the
18+
copyright over the work done by people who were employed by INRIA at the
19+
time of the contribution.
1820

1921
Governance
2022
----------

examples/covariance/plot_sparse_cov.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,8 @@
5050
5151
"""
5252

53-
# author: Gael Varoquaux <gael.varoquaux@inria.fr>
53+
# Authors: The scikit-learn developers
5454
# SPDX-License-Identifier: BSD-3-Clause
55-
# Copyright: INRIA
5655

5756
# %%
5857
# Generate the data

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#! /usr/bin/env python
22
#
3-
# Copyright (C) 2007-2009 Cournapeau David <cournape@gmail.com>
4-
# 2010 Fabian Pedregosa <fabian.pedregosa@inria.fr>
3+
# Authors: The scikit-learn developers
54
# License: 3-clause BSD
65

76
import importlib

sklearn/covariance/_graph_lasso.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
estimator.
33
"""
44

5-
# Author: Gael Varoquaux <gael.varoquaux@normalesup.org>
5+
# Authors: The scikit-learn developers
66
# SPDX-License-Identifier: BSD-3-Clause
7-
# Copyright: INRIA
87
import operator
98
import sys
109
import time

sklearn/datasets/_base.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
Base IO code for all datasets
33
"""
44

5-
# Copyright (c) 2007 David Cournapeau <cournape@gmail.com>
6-
# 2010 Fabian Pedregosa <fabian.pedregosa@inria.fr>
7-
# 2010 Olivier Grisel <olivier.grisel@ensta.org>
5+
# Authors: The scikit-learn developers
86
# SPDX-License-Identifier: BSD-3-Clause
97
import csv
108
import gzip

sklearn/datasets/_lfw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
http://vis-www.cs.umass.edu/lfw/
77
"""
88

9-
# Copyright (c) 2011 Olivier Grisel <olivier.grisel@ensta.org>
9+
# Authors: The scikit-learn developers
1010
# SPDX-License-Identifier: BSD-3-Clause
1111

1212
import logging

sklearn/datasets/_olivetti_faces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
https://cs.nyu.edu/~roweis/
1111
"""
1212

13-
# Copyright (c) 2011 David Warde-Farley <wardefar at iro dot umontreal dot ca>
13+
# Authors: The scikit-learn developers
1414
# SPDX-License-Identifier: BSD-3-Clause
1515

1616
from numbers import Integral, Real

sklearn/datasets/_twenty_newsgroups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
uncompressed the train set is 52 MB and the test set is 34 MB.
2323
"""
2424

25-
# Copyright (c) 2011 Olivier Grisel <olivier.grisel@ensta.org>
25+
# Authors: The scikit-learn developers
2626
# SPDX-License-Identifier: BSD-3-Clause
2727

2828
import codecs

sklearn/utils/_testing.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
"""Testing utilities."""
22

3-
# Copyright (c) 2011, 2012
4-
# Authors: Pietro Berkes,
5-
# Andreas Muller
6-
# Mathieu Blondel
7-
# Olivier Grisel
8-
# Arnaud Joly
9-
# Denis Engemann
10-
# Giorgio Patrini
11-
# Thierry Guillemot
3+
# Authors: The scikit-learn developers
124
# SPDX-License-Identifier: BSD-3-Clause
135
import atexit
146
import contextlib

0 commit comments

Comments
 (0)