From 4860a966b3a3102fa80d43f393155e53015cc349 Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Fri, 7 Mar 2014 22:31:14 -0500 Subject: [PATCH] REL: Update copyright year on all files changed since the new year. --- tests/risk/answer_key.py | 2 +- tests/risk/test_risk_cumulative.py | 2 +- tests/test_algorithm.py | 2 +- tests/test_algorithm_gen.py | 3 +-- zipline/algorithm.py | 2 +- zipline/api.py | 2 +- zipline/finance/blotter.py | 2 +- zipline/finance/commission.py | 2 +- zipline/finance/performance/period.py | 2 +- zipline/finance/performance/position.py | 2 +- zipline/finance/risk/cumulative.py | 2 +- zipline/finance/slippage.py | 2 +- zipline/finance/trading.py | 2 +- zipline/gens/tradesimulation.py | 2 +- zipline/test_algorithms.py | 2 +- zipline/transforms/stddev.py | 2 +- zipline/transforms/vwap.py | 2 +- zipline/utils/api_support.py | 2 +- zipline/utils/data_source_tables_gen.py | 16 +++++++++++++++- zipline/utils/tradingcalendar_bmf.py | 15 +++++++++++++++ zipline/utils/tradingcalendar_tse.py | 2 +- 21 files changed, 49 insertions(+), 21 deletions(-) diff --git a/tests/risk/answer_key.py b/tests/risk/answer_key.py index 75c71509..27b82f63 100644 --- a/tests/risk/answer_key.py +++ b/tests/risk/answer_key.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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/risk/test_risk_cumulative.py b/tests/risk/test_risk_cumulative.py index 1f3fc569..5ab1b843 100644 --- a/tests/risk/test_risk_cumulative.py +++ b/tests/risk/test_risk_cumulative.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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.py b/tests/test_algorithm.py index d506fe1e..cf76f715 100644 --- a/tests/test_algorithm.py +++ b/tests/test_algorithm.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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 55c3f33a..dc215a94 100644 --- a/tests/test_algorithm_gen.py +++ b/tests/test_algorithm_gen.py @@ -1,6 +1,5 @@ -#!/usr/bin/env python # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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/algorithm.py b/zipline/algorithm.py index f3b2ab37..2002abac 100644 --- a/zipline/algorithm.py +++ b/zipline/algorithm.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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/api.py b/zipline/api.py index 9586741e..2cb215c9 100644 --- a/zipline/api.py +++ b/zipline/api.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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/finance/blotter.py b/zipline/finance/blotter.py index 3d9053a9..46e33cd3 100644 --- a/zipline/finance/blotter.py +++ b/zipline/finance/blotter.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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/finance/commission.py b/zipline/finance/commission.py index 2512279b..0c064722 100644 --- a/zipline/finance/commission.py +++ b/zipline/finance/commission.py @@ -1,5 +1,5 @@ # -# Copyright 2012 Quantopian, Inc. +# Copyright 2014 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/finance/performance/period.py b/zipline/finance/performance/period.py index 8e14f970..d154d475 100644 --- a/zipline/finance/performance/period.py +++ b/zipline/finance/performance/period.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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/finance/performance/position.py b/zipline/finance/performance/position.py index 9227eb2d..3473e643 100644 --- a/zipline/finance/performance/position.py +++ b/zipline/finance/performance/position.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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/finance/risk/cumulative.py b/zipline/finance/risk/cumulative.py index c4beb9d0..09bcb6cf 100644 --- a/zipline/finance/risk/cumulative.py +++ b/zipline/finance/risk/cumulative.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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/finance/slippage.py b/zipline/finance/slippage.py index f75ebee6..7ee191a4 100644 --- a/zipline/finance/slippage.py +++ b/zipline/finance/slippage.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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/finance/trading.py b/zipline/finance/trading.py index 4a6473ca..44a96b56 100644 --- a/zipline/finance/trading.py +++ b/zipline/finance/trading.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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/tradesimulation.py b/zipline/gens/tradesimulation.py index f795df4e..99b281c5 100644 --- a/zipline/gens/tradesimulation.py +++ b/zipline/gens/tradesimulation.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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/test_algorithms.py b/zipline/test_algorithms.py index 70b0c8ae..4046f9d4 100644 --- a/zipline/test_algorithms.py +++ b/zipline/test_algorithms.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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 d4d1608c..7571e1b1 100644 --- a/zipline/transforms/stddev.py +++ b/zipline/transforms/stddev.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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 ffc097af..545ab32e 100644 --- a/zipline/transforms/vwap.py +++ b/zipline/transforms/vwap.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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/api_support.py b/zipline/utils/api_support.py index 0a19ca1c..4fa5d69f 100644 --- a/zipline/utils/api_support.py +++ b/zipline/utils/api_support.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 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/data_source_tables_gen.py b/zipline/utils/data_source_tables_gen.py index 0c913da0..8271a4ef 100644 --- a/zipline/utils/data_source_tables_gen.py +++ b/zipline/utils/data_source_tables_gen.py @@ -1,4 +1,18 @@ -#!/usr/bin/env python +# +# Copyright 2014 Quantopian, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import sys import getopt import traceback diff --git a/zipline/utils/tradingcalendar_bmf.py b/zipline/utils/tradingcalendar_bmf.py index d26c8c37..e5b0f3ff 100644 --- a/zipline/utils/tradingcalendar_bmf.py +++ b/zipline/utils/tradingcalendar_bmf.py @@ -1,3 +1,18 @@ +# +# Copyright 2014 Quantopian, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import pandas as pd import pytz diff --git a/zipline/utils/tradingcalendar_tse.py b/zipline/utils/tradingcalendar_tse.py index ad53d987..4ceb6c1a 100644 --- a/zipline/utils/tradingcalendar_tse.py +++ b/zipline/utils/tradingcalendar_tse.py @@ -1,5 +1,5 @@ # -# Copyright 2013 Quantopian, Inc. +# Copyright 2014 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.