diff --git a/CHANGES.md b/CHANGES.md index cb1eae8..7e31ce3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,6 @@ +## v0.1.5 (2024-06-28) +* Refactored dynamic characterization to separate package [dynamic_characterization](https://github.com/TimoDiepers/dynamic_characterization) + ## v0.1.4 (2024-06-15) * Handled emissions occuring outside of fixed time horizon in dynamic characterization [#46](https://github.com/brightway-lca/bw_timex/issues/46) * Fix substitution exchanges [#53](https://github.com/brightway-lca/bw_timex/issues/53) diff --git a/bw_timex/__init__.py b/bw_timex/__init__.py index 606c190..ed94a17 100644 --- a/bw_timex/__init__.py +++ b/bw_timex/__init__.py @@ -5,4 +5,4 @@ from .timeline_builder import TimelineBuilder from .timex_lca import TimexLCA -__version__ = "0.1.4" +__version__ = "0.1.5" diff --git a/pyproject.toml b/pyproject.toml index 57a8f45..4750ea0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ maintainers = [ description = "Time-explicit Life Cycle Assessment" keywords= ["brightway", "Life Cycle Assessment", "LCA", "time-explicit", "dynamic", "prospective"] readme = "README.md" -dynamic = ["dependencies", "version"] +dynamic = ["version"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research", @@ -80,7 +80,6 @@ packages = [ ] [tool.setuptools.dynamic] -dependencies = {file = ["docs/requirements.txt"]} version = {attr = "bw_timex.__version__"} [tool.pytest.ini_options]