From 43736b11e30224257f5ba7f81e5a8c4cc4d6a918 Mon Sep 17 00:00:00 2001 From: Gregory Marton Date: Fri, 5 Feb 2016 17:40:38 -0500 Subject: [PATCH] Updated to 2016. See https://github.com/probcomp/bayeslite/issues/322 for details. --- doc/bayeslite.1 | 2 +- doc/conf.py | 4 ++-- external/plex/prepare.sh | 2 +- setup.py | 2 +- shell/scripts/bayeslite | 2 +- shell/src/__init__.py | 2 +- shell/src/core.py | 2 +- shell/src/hook.py | 2 +- shell/src/main.py | 2 +- shell/src/pretty.py | 2 +- shell/tests/test_pretty.py | 2 +- shell/tests/test_shell.py | 2 +- shell/tests/thooks.py | 2 +- src/__init__.py | 2 +- src/ast.py | 2 +- src/bayesdb.py | 2 +- src/bql.py | 2 +- src/bqlfn.py | 2 +- src/codebook.py | 2 +- src/compiler.py | 2 +- src/core.py | 2 +- src/exception.py | 2 +- src/geweke_testing.py | 2 +- src/grammar.y | 2 +- src/guess.py | 2 +- src/legacy_models.py | 2 +- src/loggers.py | 2 +- src/math_util.py | 2 +- src/metamodel.py | 2 +- src/metamodels/__init__.py | 2 +- src/metamodels/crosscat.py | 2 +- src/metamodels/iid_gaussian.py | 2 +- src/metamodels/nig_normal.py | 2 +- src/metamodels/troll_rng.py | 2 +- src/parse.py | 2 +- src/read_csv.py | 2 +- src/read_pandas.py | 2 +- src/remote.py | 2 +- src/scan.py | 2 +- src/schema.py | 2 +- src/sessions.py | 2 +- src/sqlite3_util.py | 2 +- src/stats.py | 2 +- src/txn.py | 2 +- src/util.py | 2 +- tests/test_bql.py | 2 +- tests/test_codebook.py | 2 +- tests/test_column_dep.py | 2 +- tests/test_core.py | 2 +- tests/test_correlation.py | 2 +- tests/test_csv.py | 2 +- tests/test_geweke.py | 2 +- tests/test_guess.py | 2 +- tests/test_legacy.py | 2 +- tests/test_loggers.py | 2 +- tests/test_math_util.py | 2 +- tests/test_metamodels.py | 2 +- tests/test_parse.py | 2 +- tests/test_read_csv.py | 2 +- tests/test_read_pandas.py | 2 +- tests/test_schema.py | 2 +- tests/test_sessions.py | 2 +- tests/test_simulate.py | 2 +- tests/test_stats.py | 2 +- tests/test_subsample.py | 2 +- tests/test_util.py | 2 +- 66 files changed, 67 insertions(+), 67 deletions(-) diff --git a/doc/bayeslite.1 b/doc/bayeslite.1 index 31ab0e9a..ac831967 100644 --- a/doc/bayeslite.1 +++ b/doc/bayeslite.1 @@ -1,4 +1,4 @@ -.\" Copyright (c) 2010-2015, MIT Probabilistic Computing Project +.\" Copyright (c) 2010-2016, MIT Probabilistic Computing Project .\" .\" 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/doc/conf.py b/doc/conf.py index a45cc102..846563ec 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -20,7 +20,7 @@ 'sphinx.ext.autodoc', ] -copyright = '2010-2015, MIT Probabilistic Computing Project' +copyright = '2010-2016, MIT Probabilistic Computing Project' master_doc = 'index' project = 'bayeslite' release = '0.1.3rc1' diff --git a/external/plex/prepare.sh b/external/plex/prepare.sh index bf18da99..fcfbea4b 100644 --- a/external/plex/prepare.sh +++ b/external/plex/prepare.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (c) 2015, MIT Probabilistic Computing Project. +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project. # # This file is part of Venture. # diff --git a/setup.py b/setup.py index ff2cb41b..3023b148 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/shell/scripts/bayeslite b/shell/scripts/bayeslite index e91179e6..fd58686b 100755 --- a/shell/scripts/bayeslite +++ b/shell/scripts/bayeslite @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/shell/src/__init__.py b/shell/src/__init__.py index 9604020c..9caf9e46 100644 --- a/shell/src/__init__.py +++ b/shell/src/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/shell/src/core.py b/shell/src/core.py index 7e8c6d69..29576abf 100644 --- a/shell/src/core.py +++ b/shell/src/core.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/shell/src/hook.py b/shell/src/hook.py index bd63fbeb..c6409a94 100644 --- a/shell/src/hook.py +++ b/shell/src/hook.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/shell/src/main.py b/shell/src/main.py index ace8c7e3..d7955a55 100644 --- a/shell/src/main.py +++ b/shell/src/main.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/shell/src/pretty.py b/shell/src/pretty.py index 085a4ab3..bcf49391 100644 --- a/shell/src/pretty.py +++ b/shell/src/pretty.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/shell/tests/test_pretty.py b/shell/tests/test_pretty.py index 2311ccd5..1d163dc6 100644 --- a/shell/tests/test_pretty.py +++ b/shell/tests/test_pretty.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/shell/tests/test_shell.py b/shell/tests/test_shell.py index d57564a3..bc198bad 100644 --- a/shell/tests/test_shell.py +++ b/shell/tests/test_shell.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/shell/tests/thooks.py b/shell/tests/thooks.py index 9dc5c770..17a2ff75 100644 --- a/shell/tests/thooks.py +++ b/shell/tests/thooks.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/__init__.py b/src/__init__.py index c327b080..9e02febc 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/ast.py b/src/ast.py index cb6e2f61..82fd8c18 100644 --- a/src/ast.py +++ b/src/ast.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/bayesdb.py b/src/bayesdb.py index d7122b8b..215e535a 100644 --- a/src/bayesdb.py +++ b/src/bayesdb.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/bql.py b/src/bql.py index 220d586c..deabdfb0 100644 --- a/src/bql.py +++ b/src/bql.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/bqlfn.py b/src/bqlfn.py index c7fb5abe..bbe88c6d 100644 --- a/src/bqlfn.py +++ b/src/bqlfn.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/codebook.py b/src/codebook.py index cd5e1a87..a9e3a506 100644 --- a/src/codebook.py +++ b/src/codebook.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/compiler.py b/src/compiler.py index b7e31fe5..b8a61a3b 100644 --- a/src/compiler.py +++ b/src/compiler.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/core.py b/src/core.py index 481ac636..e85dc209 100644 --- a/src/core.py +++ b/src/core.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/exception.py b/src/exception.py index 5db751d6..582ca002 100644 --- a/src/exception.py +++ b/src/exception.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/geweke_testing.py b/src/geweke_testing.py index e6c635a4..a392a857 100644 --- a/src/geweke_testing.py +++ b/src/geweke_testing.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/grammar.y b/src/grammar.y index 4fc80ac9..67517cae 100644 --- a/src/grammar.y +++ b/src/grammar.y @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2015, MIT Probabilistic Computing Project + * Copyright (c) 2010-2016, MIT Probabilistic Computing Project * * 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/src/guess.py b/src/guess.py index 1b14bb77..1a143d30 100644 --- a/src/guess.py +++ b/src/guess.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/legacy_models.py b/src/legacy_models.py index 6387abfd..4f282163 100644 --- a/src/legacy_models.py +++ b/src/legacy_models.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/loggers.py b/src/loggers.py index ce74a7b3..bbb9e7f6 100644 --- a/src/loggers.py +++ b/src/loggers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/math_util.py b/src/math_util.py index 91614589..1277e2a9 100644 --- a/src/math_util.py +++ b/src/math_util.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/metamodel.py b/src/metamodel.py index 437888dd..c4d21f54 100644 --- a/src/metamodel.py +++ b/src/metamodel.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/metamodels/__init__.py b/src/metamodels/__init__.py index 9604020c..9caf9e46 100644 --- a/src/metamodels/__init__.py +++ b/src/metamodels/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/metamodels/crosscat.py b/src/metamodels/crosscat.py index 6217e53b..3c0e81dc 100644 --- a/src/metamodels/crosscat.py +++ b/src/metamodels/crosscat.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/metamodels/iid_gaussian.py b/src/metamodels/iid_gaussian.py index 045b9b35..9656106e 100644 --- a/src/metamodels/iid_gaussian.py +++ b/src/metamodels/iid_gaussian.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/metamodels/nig_normal.py b/src/metamodels/nig_normal.py index c7a1332f..3d3e4602 100644 --- a/src/metamodels/nig_normal.py +++ b/src/metamodels/nig_normal.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/metamodels/troll_rng.py b/src/metamodels/troll_rng.py index 2659e6db..fa101f9f 100644 --- a/src/metamodels/troll_rng.py +++ b/src/metamodels/troll_rng.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/parse.py b/src/parse.py index 0e469805..9abe607a 100644 --- a/src/parse.py +++ b/src/parse.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/read_csv.py b/src/read_csv.py index f829d429..1184672d 100644 --- a/src/read_csv.py +++ b/src/read_csv.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/read_pandas.py b/src/read_pandas.py index eaab7bd1..92ebeb54 100644 --- a/src/read_pandas.py +++ b/src/read_pandas.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/remote.py b/src/remote.py index 2f3893f6..f08c77ce 100644 --- a/src/remote.py +++ b/src/remote.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/scan.py b/src/scan.py index ea0963c2..54905d08 100644 --- a/src/scan.py +++ b/src/scan.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/schema.py b/src/schema.py index 83bb1512..20bbd93a 100644 --- a/src/schema.py +++ b/src/schema.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/sessions.py b/src/sessions.py index bc1f5cb8..4e60217d 100644 --- a/src/sessions.py +++ b/src/sessions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/sqlite3_util.py b/src/sqlite3_util.py index 2f4d3427..68b66d2f 100644 --- a/src/sqlite3_util.py +++ b/src/sqlite3_util.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/stats.py b/src/stats.py index 4943c296..f45a6740 100644 --- a/src/stats.py +++ b/src/stats.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/txn.py b/src/txn.py index 32f0205c..b5d07698 100644 --- a/src/txn.py +++ b/src/txn.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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/src/util.py b/src/util.py index 4831bed0..d8eab30e 100644 --- a/src/util.py +++ b/src/util.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_bql.py b/tests/test_bql.py index 5cb197ab..9d64af67 100644 --- a/tests/test_bql.py +++ b/tests/test_bql.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_codebook.py b/tests/test_codebook.py index ce3ec507..102fcec3 100644 --- a/tests/test_codebook.py +++ b/tests/test_codebook.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_column_dep.py b/tests/test_column_dep.py index c82ff17b..cc0547da 100644 --- a/tests/test_column_dep.py +++ b/tests/test_column_dep.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_core.py b/tests/test_core.py index d1bc347e..866cdd3c 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_correlation.py b/tests/test_correlation.py index 30bd6e1a..fa41ebdc 100644 --- a/tests/test_correlation.py +++ b/tests/test_correlation.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_csv.py b/tests/test_csv.py index a4dc8b2b..14c28050 100644 --- a/tests/test_csv.py +++ b/tests/test_csv.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_geweke.py b/tests/test_geweke.py index a7e518cc..100cba0e 100644 --- a/tests/test_geweke.py +++ b/tests/test_geweke.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_guess.py b/tests/test_guess.py index ba2a855a..d33478cf 100644 --- a/tests/test_guess.py +++ b/tests/test_guess.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_legacy.py b/tests/test_legacy.py index bb965506..705ef519 100644 --- a/tests/test_legacy.py +++ b/tests/test_legacy.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_loggers.py b/tests/test_loggers.py index 812f25dd..d5b4fcfd 100644 --- a/tests/test_loggers.py +++ b/tests/test_loggers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_math_util.py b/tests/test_math_util.py index f85dd3a0..cb8de2f4 100644 --- a/tests/test_math_util.py +++ b/tests/test_math_util.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_metamodels.py b/tests/test_metamodels.py index 6d1b9027..b18e52fe 100644 --- a/tests/test_metamodels.py +++ b/tests/test_metamodels.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_parse.py b/tests/test_parse.py index c9f13136..548b2633 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_read_csv.py b/tests/test_read_csv.py index 5215639e..605bd747 100644 --- a/tests/test_read_csv.py +++ b/tests/test_read_csv.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_read_pandas.py b/tests/test_read_pandas.py index c4344b31..325f1a87 100644 --- a/tests/test_read_pandas.py +++ b/tests/test_read_pandas.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_schema.py b/tests/test_schema.py index 2ead2735..a69d99c5 100644 --- a/tests/test_schema.py +++ b/tests/test_schema.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_sessions.py b/tests/test_sessions.py index cd51de75..1d234df8 100644 --- a/tests/test_sessions.py +++ b/tests/test_sessions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_simulate.py b/tests/test_simulate.py index 6fbde410..eefdd92e 100644 --- a/tests/test_simulate.py +++ b/tests/test_simulate.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_stats.py b/tests/test_stats.py index 3b5cc770..af2d7ec1 100644 --- a/tests/test_stats.py +++ b/tests/test_stats.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_subsample.py b/tests/test_subsample.py index f8268a09..9a3299b8 100644 --- a/tests/test_subsample.py +++ b/tests/test_subsample.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # 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_util.py b/tests/test_util.py index 1b7ad5dd..6b4351a0 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2015, MIT Probabilistic Computing Project +# Copyright (c) 2010-2016, MIT Probabilistic Computing Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.