From 90bbcaf109fa94fb650c644a41c0c6f6579a5cd1 Mon Sep 17 00:00:00 2001 From: Henri Pesonen Date: Tue, 7 Mar 2023 19:55:57 +0100 Subject: [PATCH] Fix 085 (#465) * add __init__.py to elfi/methods/bsl/ * Update CHANGELOG.rst --- CHANGELOG.rst | 2 ++ elfi/methods/bsl/__init__.py | 1 + 2 files changed, 3 insertions(+) create mode 100644 elfi/methods/bsl/__init__.py diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a44e672a..b46e14a1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,8 @@ Changelog ========= +- Fix broken 0.8.5 by adding missing `__init__.py` to elfi/methods/bsl/ + 0.8.5 (2023-03-07) ------------------ - Fix the option to continue inference in model-based inference diff --git a/elfi/methods/bsl/__init__.py b/elfi/methods/bsl/__init__.py new file mode 100644 index 00000000..6e031999 --- /dev/null +++ b/elfi/methods/bsl/__init__.py @@ -0,0 +1 @@ +# noqa: D104