From 63235dce22a789c0868cc34df71c284916894532 Mon Sep 17 00:00:00 2001 From: Henri Vuollekoski Date: Sat, 3 Dec 2016 20:20:10 +0200 Subject: [PATCH] Cleaning --- LICENSE | 2 +- docs/conf.py | 2 +- elfi/__init__.py | 2 +- {elfi/examples => examples}/ma2.py | 0 tests/functional/test_ma2.py | 2 +- tests/unit/test_random_consistency.py | 2 +- 6 files changed, 5 insertions(+), 5 deletions(-) rename {elfi/examples => examples}/ma2.py (100%) diff --git a/LICENSE b/LICENSE index 56359b8e..7fa1dd18 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2016, Helsinki Institute for Information Technology +Copyright (c) 2016, ELFI Developers and their Assignees All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/docs/conf.py b/docs/conf.py index 8b9c268a..395536c7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -94,7 +94,7 @@ def __getattr__(cls, name): # General information about the project. project = 'ELFI' -copyright = '2016, Helsinki Institute for Information Technology' +copyright = '2016, ELFI Developers and their Assignees' author = 'ELFI authors' # The version info for the project you're documenting, acts as replacement for diff --git a/elfi/__init__.py b/elfi/__init__.py index ce2fa5fe..3854acdc 100644 --- a/elfi/__init__.py +++ b/elfi/__init__.py @@ -7,4 +7,4 @@ __author__ = 'ELFI authors' __email__ = 'aki.vehtari@aalto.fi' -__version__ = '0.2.0' +__version__ = '0.2.2' diff --git a/elfi/examples/ma2.py b/examples/ma2.py similarity index 100% rename from elfi/examples/ma2.py rename to examples/ma2.py diff --git a/tests/functional/test_ma2.py b/tests/functional/test_ma2.py index 37ed1efd..768ee684 100644 --- a/tests/functional/test_ma2.py +++ b/tests/functional/test_ma2.py @@ -4,7 +4,7 @@ import dask from elfi.core import * from elfi.distributions import * -from elfi.examples.ma2 import MA2, autocov, distance +from examples.ma2 import MA2, autocov, distance from distributed import Client from functools import partial diff --git a/tests/unit/test_random_consistency.py b/tests/unit/test_random_consistency.py index f3462157..7ffb14a2 100644 --- a/tests/unit/test_random_consistency.py +++ b/tests/unit/test_random_consistency.py @@ -1,6 +1,6 @@ import numpy as np from elfi import * -from elfi.examples.ma2 import * +from examples.ma2 import * from functools import partial import pytest