Skip to content

Commit

Permalink
Fix initialization dependencies for Smooth
Browse files Browse the repository at this point in the history
  • Loading branch information
enekomartinmartinez committed Feb 29, 2024
1 parent aaab75d commit a6064b7
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
24 changes: 24 additions & 0 deletions docs/whats_new.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
What's New
==========
v3.13.4 (2024/02/29)
--------------------
New Features
~~~~~~~~~~~~

Breaking changes
~~~~~~~~~~~~~~~~

Deprecations
~~~~~~~~~~~~

Bug fixes
~~~~~~~~~
- Fix initialization dependencies for :py:class:`pysd.py_backend.statefuls.Smooth` in the builder :py:class:`pysd.builders.python.python_expressions_builder.SmoothBuilder` (:issue:`440`). (`@enekomartinmartinez <https://github.com/enekomartinmartinez>`_)

Documentation
~~~~~~~~~~~~~

Performance
~~~~~~~~~~~

Internal Changes
~~~~~~~~~~~~~~~~

v3.13.3 (2024/02/02)
--------------------
New Features
Expand Down
2 changes: 1 addition & 1 deletion pysd/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.13.3"
__version__ = "3.13.4"
1 change: 0 additions & 1 deletion pysd/builders/python/python_expressions_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -1442,7 +1442,6 @@ def build(self, arguments: dict) -> BuildAST:
self.element.other_dependencies[arguments["name"]] = {
"initial": merge_dependencies(
arguments["initial"].calls,
arguments["smooth_time"].calls,
arguments["order"].calls),
"step": merge_dependencies(
arguments["input"].calls,
Expand Down

0 comments on commit a6064b7

Please sign in to comment.