python-openevse-http 0.3.1__tar.gz → 0.3.2__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 (32) hide show
  1. {python_openevse_http-0.3.1/python_openevse_http.egg-info → python_openevse_http-0.3.2}/PKG-INFO +1 -1
  2. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/openevsehttp/commands.py +1 -1
  3. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2/python_openevse_http.egg-info}/PKG-INFO +1 -1
  4. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/setup.py +1 -1
  5. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/LICENSE +0 -0
  6. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/README.md +0 -0
  7. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/openevsehttp/__init__.py +0 -0
  8. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/openevsehttp/__main__.py +0 -0
  9. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/openevsehttp/client.py +0 -0
  10. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/openevsehttp/const.py +0 -0
  11. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/openevsehttp/exceptions.py +0 -0
  12. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/openevsehttp/managers.py +0 -0
  13. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/openevsehttp/properties.py +0 -0
  14. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/openevsehttp/sensors.py +0 -0
  15. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/openevsehttp/websocket.py +0 -0
  16. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/pyproject.toml +0 -0
  17. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/python_openevse_http.egg-info/SOURCES.txt +0 -0
  18. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/python_openevse_http.egg-info/dependency_links.txt +0 -0
  19. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/python_openevse_http.egg-info/not-zip-safe +0 -0
  20. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/python_openevse_http.egg-info/requires.txt +0 -0
  21. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/python_openevse_http.egg-info/top_level.txt +0 -0
  22. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/setup.cfg +0 -0
  23. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/tests/test_client.py +0 -0
  24. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/tests/test_commands.py +0 -0
  25. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/tests/test_external_session.py +0 -0
  26. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/tests/test_main_edge_cases.py +0 -0
  27. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/tests/test_managers.py +0 -0
  28. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/tests/test_mixins.py +0 -0
  29. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/tests/test_properties.py +0 -0
  30. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/tests/test_sensors.py +0 -0
  31. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/tests/test_shaper.py +0 -0
  32. {python_openevse_http-0.3.1 → python_openevse_http-0.3.2}/tests/test_websocket.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python_openevse_http
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: Python wrapper for OpenEVSE HTTP API
5
5
  Home-page: https://github.com/firstof9/python-openevse-http
6
6
  Download-URL: https://github.com/firstof9/python-openevse-http
@@ -506,7 +506,7 @@ class CommandsMixin:
506
506
  response = await self.process_request(url=url, method="post", data=data)
507
507
  response = self._normalize_response(response)
508
508
  msg = response.get("msg") if isinstance(response, Mapping) else None
509
- if msg not in ["OK", "done", "no change"]:
509
+ if msg not in ["OK", "done", "no change", "Current Shaper state changed"]:
510
510
  _LOGGER.error("Problem issuing command: %s", response)
511
511
  raise UnknownError
512
512
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python_openevse_http
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: Python wrapper for OpenEVSE HTTP API
5
5
  Home-page: https://github.com/firstof9/python-openevse-http
6
6
  Download-URL: https://github.com/firstof9/python-openevse-http
@@ -6,7 +6,7 @@ from setuptools import find_packages, setup
6
6
 
7
7
  PROJECT_DIR = Path(__file__).parent.resolve()
8
8
  README_FILE = PROJECT_DIR / "README.md"
9
- VERSION = "0.3.1"
9
+ VERSION = "0.3.2"
10
10
 
11
11
  setup(
12
12
  name="python_openevse_http",