From 5fc69d8c2cbeaab7061d43915704324f86e72cb1 Mon Sep 17 00:00:00 2001 From: TimoDiepers Date: Thu, 11 Jul 2024 17:58:56 +0200 Subject: [PATCH] v0.1.7 --- CHANGES.md | 3 +++ bw_timex/__init__.py | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 2164156..93d5f5f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,6 @@ +## v0.1.7 (2024-07-11) +* Fixed some dependencies + ## v0.1.6 (2024-07-11) * Performance improvements * Added option to calculate the dynamic LCI directly from the timeline without expanding the technosphere matrix diff --git a/bw_timex/__init__.py b/bw_timex/__init__.py index 57d17fe..1b40dbe 100644 --- a/bw_timex/__init__.py +++ b/bw_timex/__init__.py @@ -1,9 +1,9 @@ -from .dynamic_characterization import DynamicCharacterization from .dynamic_biosphere_builder import DynamicBiosphereBuilder +from .dynamic_characterization import DynamicCharacterization from .edge_extractor import EdgeExtractor +from .helper_classes import SetList from .matrix_modifier import MatrixModifier from .timeline_builder import TimelineBuilder from .timex_lca import TimexLCA -from .helper_classes import SetList -__version__ = "0.1.6" +__version__ = "0.1.7"