Skip to content

CLN remove unneeded copyrights #29257

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion doc/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ In 2010 Fabian Pedregosa, Gael Varoquaux, Alexandre Gramfort and Vincent
Michel of INRIA took leadership of the project and made the first public
release, February the 1st 2010. Since then, several releases have appeared
following an approximately 3-month cycle, and a thriving international
community has been leading the development.
community has been leading the development. As a result, INRIA holds the
copyright over the work done by people who were employed by INRIA at the
time of the contribution.

Governance
----------
Expand Down
3 changes: 1 addition & 2 deletions examples/covariance/plot_sparse_cov.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@

"""

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

# %%
# Generate the data
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#! /usr/bin/env python
#
# Copyright (C) 2007-2009 Cournapeau David <cournape@gmail.com>
# 2010 Fabian Pedregosa <fabian.pedregosa@inria.fr>
# Authors: The scikit-learn developers
# License: 3-clause BSD

import importlib
Expand Down
3 changes: 1 addition & 2 deletions sklearn/covariance/_graph_lasso.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
estimator.
"""

# Author: Gael Varoquaux <gael.varoquaux@normalesup.org>
# Authors: The scikit-learn developers
# SPDX-License-Identifier: BSD-3-Clause
# Copyright: INRIA
import operator
import sys
import time
Expand Down
4 changes: 1 addition & 3 deletions sklearn/datasets/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
Base IO code for all datasets
"""

# Copyright (c) 2007 David Cournapeau <cournape@gmail.com>
# 2010 Fabian Pedregosa <fabian.pedregosa@inria.fr>
# 2010 Olivier Grisel <olivier.grisel@ensta.org>
# Authors: The scikit-learn developers
# SPDX-License-Identifier: BSD-3-Clause
import csv
import gzip
Expand Down
2 changes: 1 addition & 1 deletion sklearn/datasets/_lfw.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
http://vis-www.cs.umass.edu/lfw/
"""

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

import logging
Expand Down
2 changes: 1 addition & 1 deletion sklearn/datasets/_olivetti_faces.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
https://cs.nyu.edu/~roweis/
"""

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

from numbers import Integral, Real
Expand Down
2 changes: 1 addition & 1 deletion sklearn/datasets/_twenty_newsgroups.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
uncompressed the train set is 52 MB and the test set is 34 MB.
"""

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

import codecs
Expand Down
10 changes: 1 addition & 9 deletions sklearn/utils/_testing.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
"""Testing utilities."""

# Copyright (c) 2011, 2012
# Authors: Pietro Berkes,
# Andreas Muller
# Mathieu Blondel
# Olivier Grisel
# Arnaud Joly
# Denis Engemann
# Giorgio Patrini
# Thierry Guillemot
# Authors: The scikit-learn developers
# SPDX-License-Identifier: BSD-3-Clause
import atexit
import contextlib
Expand Down