gridappsd-python 2023.7.1a3__tar.gz → 2023.7.1a5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/PKG-INFO +1 -1
  2. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/topics.py +2 -2
  3. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/pyproject.toml +1 -1
  4. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/README.md +0 -0
  5. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/__init__.py +0 -0
  6. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/__main__.py +0 -0
  7. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/app_registration.py +0 -0
  8. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/difference_builder.py +0 -0
  9. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/docker_handler.py +0 -0
  10. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/goss.py +0 -0
  11. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/gridappsd.py +0 -0
  12. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/houses.py +0 -0
  13. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/loghandler.py +0 -0
  14. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/register_app.py +0 -0
  15. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/simulation.py +0 -0
  16. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/timeseries.py +0 -0
  17. {gridappsd_python-2023.7.1a3 → gridappsd_python-2023.7.1a5}/gridappsd/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: gridappsd-python
3
- Version: 2023.7.1a3
3
+ Version: 2023.7.1a5
4
4
  Summary: A GridAPPS-D Python Adapter
5
5
  Home-page: https://gridappsd.readthedocs.io
6
6
  License: BSD-3-Clause
@@ -184,8 +184,8 @@ def field_message_bus_topic(message_bus_id:str, app_id: str=None, agent_id: str=
184
184
  :return:
185
185
  """
186
186
  assert message_bus_id, "message_bus_id cannot be empty"
187
-
188
- return f"{BASE_FIELD_TOPIC}.{message_bus_id}.{app_id}.{agent_id}"
187
+
188
+ return f"{BASE_FIELD_TOPIC}.{message_bus_id}"
189
189
 
190
190
 
191
191
  def field_message_bus_app_topic(message_bus_id, app_id=None):
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "gridappsd-python"
3
- version = "2023.7.1a3"
3
+ version = "2023.7.1a5"
4
4
  description = "A GridAPPS-D Python Adapter"
5
5
  authors = [
6
6
  "C. Allwardt <3979063+craig8@users.noreply.github.com>",