From 58af62f18d6c6713f93f654230395f8a4283d5f7 Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Fri, 5 Apr 2013 14:28:15 -0400 Subject: [PATCH] REL: Update copyright on all files touched since end of 2012. s/Copyright 2012/Copyright 2013/ --- tests/test_algorithm.py | 2 +- tests/test_algorithm_gen.py | 2 +- tests/test_exception_handling.py | 2 +- tests/test_finance.py | 2 +- tests/test_sources.py | 2 +- tests/test_tradingcalendar.py | 2 +- tests/test_transforms.py | 2 +- tests/test_utils.py | 2 +- zipline/examples/dual_moving_average.py | 2 +- zipline/examples/olmar.py | 2 +- zipline/examples/pairtrade.py | 2 +- zipline/gens/composites.py | 2 +- zipline/sources/data_frame_source.py | 2 +- zipline/sources/test_source.py | 2 +- zipline/transforms/mavg.py | 2 +- zipline/transforms/stddev.py | 2 +- zipline/transforms/vwap.py | 2 +- zipline/utils/tradingcalendar.py | 2 +- zipline/utils/tradingcalendar_lse.py | 2 +- 19 files changed, 19 insertions(+), 19 deletions(-) diff --git a/tests/test_algorithm.py b/tests/test_algorithm.py index 76b3ddc0..b922a88f 100644 --- a/tests/test_algorithm.py +++ b/tests/test_algorithm.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_algorithm_gen.py b/tests/test_algorithm_gen.py index a2a395c0..636c3de5 100644 --- a/tests/test_algorithm_gen.py +++ b/tests/test_algorithm_gen.py @@ -1,6 +1,6 @@ #!/usr/bin/python # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_exception_handling.py b/tests/test_exception_handling.py index bb6263ff..6d24908f 100644 --- a/tests/test_exception_handling.py +++ b/tests/test_exception_handling.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_finance.py b/tests/test_finance.py index 08269f5a..9e995166 100644 --- a/tests/test_finance.py +++ b/tests/test_finance.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_sources.py b/tests/test_sources.py index 75de66cd..e1096131 100644 --- a/tests/test_sources.py +++ b/tests/test_sources.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_tradingcalendar.py b/tests/test_tradingcalendar.py index 269ceb0f..4a62fb01 100644 --- a/tests/test_tradingcalendar.py +++ b/tests/test_tradingcalendar.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_transforms.py b/tests/test_transforms.py index aff06de5..4a675612 100644 --- a/tests/test_transforms.py +++ b/tests/test_transforms.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_utils.py b/tests/test_utils.py index 27150b3a..cac242dd 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/zipline/examples/dual_moving_average.py b/zipline/examples/dual_moving_average.py index 8b919ae6..e00a95ed 100755 --- a/zipline/examples/dual_moving_average.py +++ b/zipline/examples/dual_moving_average.py @@ -1,6 +1,6 @@ #!/usr/bin/python # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/zipline/examples/olmar.py b/zipline/examples/olmar.py index afd40411..af88cfb8 100644 --- a/zipline/examples/olmar.py +++ b/zipline/examples/olmar.py @@ -138,7 +138,7 @@ def simplex_projection(v, b=1): 1.0 Original matlab implementation: John Duchi (jduchi@cs.berkeley.edu) - Python-port: Copyright 2012 by Thomas Wiecki (thomas.wiecki@gmail.com). + Python-port: Copyright 2013 by Thomas Wiecki (thomas.wiecki@gmail.com). """ v = np.asarray(v) diff --git a/zipline/examples/pairtrade.py b/zipline/examples/pairtrade.py index 994a7e14..0786bc94 100755 --- a/zipline/examples/pairtrade.py +++ b/zipline/examples/pairtrade.py @@ -1,6 +1,6 @@ #!/usr/bin/python # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/zipline/gens/composites.py b/zipline/gens/composites.py index 3be5a605..df2f1677 100644 --- a/zipline/gens/composites.py +++ b/zipline/gens/composites.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/zipline/sources/data_frame_source.py b/zipline/sources/data_frame_source.py index 10bfe505..e5dd93a0 100644 --- a/zipline/sources/data_frame_source.py +++ b/zipline/sources/data_frame_source.py @@ -1,6 +1,6 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/zipline/sources/test_source.py b/zipline/sources/test_source.py index 7c2238f8..bd619b6c 100644 --- a/zipline/sources/test_source.py +++ b/zipline/sources/test_source.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/zipline/transforms/mavg.py b/zipline/transforms/mavg.py index 3d4a853d..d07a632c 100644 --- a/zipline/transforms/mavg.py +++ b/zipline/transforms/mavg.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/zipline/transforms/stddev.py b/zipline/transforms/stddev.py index 5d7dde14..1bc498d3 100644 --- a/zipline/transforms/stddev.py +++ b/zipline/transforms/stddev.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/zipline/transforms/vwap.py b/zipline/transforms/vwap.py index e00d4c16..993896c3 100644 --- a/zipline/transforms/vwap.py +++ b/zipline/transforms/vwap.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/zipline/utils/tradingcalendar.py b/zipline/utils/tradingcalendar.py index 77b6caea..5a53baec 100644 --- a/zipline/utils/tradingcalendar.py +++ b/zipline/utils/tradingcalendar.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/zipline/utils/tradingcalendar_lse.py b/zipline/utils/tradingcalendar_lse.py index 84d5e545..bbd9fea3 100644 --- a/zipline/utils/tradingcalendar_lse.py +++ b/zipline/utils/tradingcalendar_lse.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2013 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.