Skip to content

Commit ba0a473

Browse files
committed
s/COPYING/LICENSE.txt/ in source files
Thanks to @sergiopasra for the heads-up; fixes pydata#33.
1 parent dbc7112 commit ba0a473

25 files changed

+26
-26
lines changed

doc/overview.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ answers you get.
114114
License
115115
-------
116116

117-
2-clause BSD. See the file `COPYING
118-
<https://github.com/pydata/patsy/blob/master/COPYING>`_ for details.
117+
2-clause BSD. See the file `LICENSE.txt
118+
<https://github.com/pydata/patsy/blob/master/LICENSE.txt>`_ for details.
119119

120120
Users
121121
-----

patsy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of Patsy
22
# Copyright (C) 2011-2013 Nathaniel Smith <njs@pobox.com>
3-
# See file COPYING for license information.
3+
# See file LICENSE.txt for license information.
44

55
"""patsy is a Python package for describing statistical models and building
66
design matrices. It is closely inspired by the 'formula' mini-language used in

patsy/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of Patsy
22
# Copyright (C) 2011-2013 Nathaniel Smith <njs@pobox.com>
3-
# See file COPYING for license information.
3+
# See file LICENSE.txt for license information.
44

55
# This file defines the core design matrix building functions.
66

patsy/builtins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of Patsy
22
# Copyright (C) 2011-2013 Nathaniel Smith <njs@pobox.com>
3-
# See file COPYING for license information.
3+
# See file LICENSE.txt for license information.
44

55
# This module sets up the namespace of stuff that is available to formulas by
66
# default. All formulas are interpreted in an environment that acts as if

patsy/categorical.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of Patsy
22
# Copyright (C) 2011-2013 Nathaniel Smith <njs@pobox.com>
3-
# See file COPYING for license information.
3+
# See file LICENSE.txt for license information.
44

55
__all__ = ["C", "guess_categorical", "CategoricalSniffer",
66
"categorical_to_int"]

patsy/compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of Patsy
22
# Copyright (C) 2012 Nathaniel Smith <njs@pobox.com>
3-
# See file COPYING for license information.
3+
# See file LICENSE.txt for license information.
44

55
# This file contains compatibility code for supporting old versions of Python
66
# and numpy. (If we can concentrate it here, hopefully it'll make it easier to

patsy/constraint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of Patsy
22
# Copyright (C) 2011-2012 Nathaniel Smith <njs@pobox.com>
3-
# See file COPYING for license information.
3+
# See file LICENSE.txt for license information.
44

55
# Interpreting linear constraints like "2*x1 + x2 = 0"
66

patsy/contrasts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of Patsy
22
# Copyright (C) 2011-2012 Nathaniel Smith <njs@pobox.com>
3-
# See file COPYING for license information.
3+
# See file LICENSE.txt for license information.
44

55
# http://www.ats.ucla.edu/stat/r/library/contrast_coding.htm
66
# http://www.ats.ucla.edu/stat/sas/webbooks/reg/chapter5/sasreg5.htm

patsy/desc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of Patsy
22
# Copyright (C) 2011-2012 Nathaniel Smith <njs@pobox.com>
3-
# See file COPYING for license information.
3+
# See file LICENSE.txt for license information.
44

55
# This file defines the ModelDesc class, which describes a model at a high
66
# level, as a list of interactions of factors. It also has the code to convert

patsy/design_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of Patsy
22
# Copyright (C) 2011-2012 Nathaniel Smith <njs@pobox.com>
3-
# See file COPYING for license information.
3+
# See file LICENSE.txt for license information.
44

55
# This file defines the main class for storing metadata about a model
66
# design. It also defines a 'value-added' design matrix type -- a subclass of

0 commit comments

Comments
 (0)