Skip to content
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

Add/Update copyright headers #755

Merged
merged 2 commits into from
Jun 3, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
10 changes: 10 additions & 0 deletions chaco/_cython_speedups.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

import sys
import numpy as np
cimport numpy as np
Expand Down
10 changes: 10 additions & 0 deletions chaco/_speedups_fallback.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

"""
Module that implements pure-python equivalents of the functions in the
_speedups extension module.
Expand Down
10 changes: 10 additions & 0 deletions chaco/abstract_colormap.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines the base class for color maps
"""
from traits.api import Enum, Event, HasTraits, Instance
Expand Down
10 changes: 10 additions & 0 deletions chaco/abstract_controller.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines the base class for controllers.
"""
# Enthought library imports
Expand Down
10 changes: 10 additions & 0 deletions chaco/abstract_data_range.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

"""
Defines the base class for data ranges.
"""
Expand Down
10 changes: 10 additions & 0 deletions chaco/abstract_data_source.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

"""
Defines the AbstractDataSource class.
"""
Expand Down
10 changes: 10 additions & 0 deletions chaco/abstract_mapper.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines the base class for mappings.
"""
# Major library imports
Expand Down
10 changes: 10 additions & 0 deletions chaco/abstract_overlay.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Abstract base class for plot decorators and overlays.

This class is primarily used so that tools can easily distinguish between
Expand Down
10 changes: 10 additions & 0 deletions chaco/abstract_plot_data.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines the base class for plot data.
"""
from traits.api import Bool, Event, HasTraits
Expand Down
10 changes: 10 additions & 0 deletions chaco/abstract_plot_renderer.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines a base class for plot renderers.
"""
# Enthought library imports.
Expand Down
3 changes: 2 additions & 1 deletion chaco/api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Copyright 2006-2021 Enthought, Inc., Austin, TX
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
Expand All @@ -7,6 +7,7 @@
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

"""
Defines the publicly accessible items of the Chaco API.

Expand Down
10 changes: 10 additions & 0 deletions chaco/array_data_source.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines the ArrayDataSource class."""

# Major library imports
Expand Down
10 changes: 10 additions & 0 deletions chaco/array_plot_data.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines ArrayPlotData.
"""
from numpy import array, ndarray
Expand Down
10 changes: 10 additions & 0 deletions chaco/axis.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines the PlotAxis class, and associated validator and UI.
"""
# Major library import
Expand Down
10 changes: 10 additions & 0 deletions chaco/axis_view.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines the TraitsUI view for a PlotAxis """
from traits.api import TraitError
from traitsui.api import View, HGroup, Group, VGroup, Item, TextEditor
Expand Down
3 changes: 2 additions & 1 deletion chaco/barplot.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Copyright 2006-2021 Enthought, Inc., Austin, TX
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
Expand All @@ -7,6 +7,7 @@
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

import warnings

from chaco.plots.barplot import BarPlot # noqa: F401
Expand Down
10 changes: 10 additions & 0 deletions chaco/base.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

"""
Defines basic traits and functions for the data model.
"""
Expand Down
10 changes: 10 additions & 0 deletions chaco/base_1d_mapper.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines the Base1DMapper class.
"""
# Enthought library imports
Expand Down
10 changes: 10 additions & 0 deletions chaco/base_1d_plot.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

"""
Abstract base class for 1-D plots which only use one axis
"""
Expand Down
10 changes: 10 additions & 0 deletions chaco/base_2d_plot.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines the base class for 2-D plots.
"""
# Standard library imports
Expand Down
10 changes: 10 additions & 0 deletions chaco/base_candle_plot.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

# Major library imports
from numpy import array, column_stack

Expand Down
10 changes: 10 additions & 0 deletions chaco/base_contour_plot.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

from numpy import array, isscalar, issubsctype, linspace, number

# Enthought library imports
Expand Down
10 changes: 10 additions & 0 deletions chaco/base_data_range.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

"""
Defines the BaseDataRange class.
"""
Expand Down
10 changes: 10 additions & 0 deletions chaco/base_plot_container.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines the BasePlotContainer class.
"""
import warnings
Expand Down
10 changes: 10 additions & 0 deletions chaco/base_xy_plot.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines the base class for XY plots.
"""
from math import sqrt
Expand Down
3 changes: 2 additions & 1 deletion chaco/candle_plot.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Copyright 2006-2021 Enthought, Inc., Austin, TX
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
Expand All @@ -7,6 +7,7 @@
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

import warnings

from chaco.plots.candle_plot import CandlePlot # noqa: F401
Expand Down
10 changes: 10 additions & 0 deletions chaco/chaco_traits.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

""" Defines various traits that are used in many places in Chaco.
"""

Expand Down
3 changes: 2 additions & 1 deletion chaco/cmap_image_plot.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Copyright 2006-2021 Enthought, Inc., Austin, TX
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
Expand All @@ -7,6 +7,7 @@
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

import warnings

from chaco.plots.cmap_image_plot import CMapImagePlot # noqa: F401
Expand Down
Loading