openbb-platform-api 1.3.0__tar.gz → 1.3.1__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 (16) hide show
  1. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/PKG-INFO +2 -2
  2. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/pyproject.toml +2 -2
  3. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/README.md +0 -0
  4. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/openbb_platform_api/__init__.py +0 -0
  5. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/openbb_platform_api/assets/default_apps.json +0 -0
  6. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/openbb_platform_api/assets/landing_page.html +0 -0
  7. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/openbb_platform_api/main.py +0 -0
  8. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/openbb_platform_api/query_models.py +0 -0
  9. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/openbb_platform_api/response_models.py +0 -0
  10. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/openbb_platform_api/utils/__init__.py +0 -0
  11. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/openbb_platform_api/utils/api.py +0 -0
  12. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/openbb_platform_api/utils/merge_agents.py +0 -0
  13. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/openbb_platform_api/utils/merge_apps.py +0 -0
  14. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/openbb_platform_api/utils/merge_widgets.py +0 -0
  15. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/openbb_platform_api/utils/openapi.py +0 -0
  16. {openbb_platform_api-1.3.0 → openbb_platform_api-1.3.1}/openbb_platform_api/utils/widgets.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: openbb-platform-api
3
- Version: 1.3.0
3
+ Version: 1.3.1
4
4
  Summary: OpenBB Platform API: Launch script and widgets builder for the Open Data Platform REST API and Workspace Backend Connector.
5
5
  License: AGPL-3.0-only
6
6
  Author: OpenBB
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.12
14
14
  Classifier: Programming Language :: Python :: 3.13
15
15
  Classifier: Programming Language :: Python :: 3.14
16
16
  Requires-Dist: deepdiff (>=8.6.1)
17
- Requires-Dist: openbb-core (>=1.6.0,<2.0.0)
17
+ Requires-Dist: openbb-core (>=1.6.1,<2.0.0)
18
18
  Project-URL: Documentation, https://docs.openbb.co/odp/python/extensions/interface/openbb-api
19
19
  Project-URL: Homepage, https://openbb.co
20
20
  Project-URL: Repository, https://github.com/openbb-finance/openbb
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "openbb-platform-api"
3
- version = "1.3.0"
3
+ version = "1.3.1"
4
4
  description = "OpenBB Platform API: Launch script and widgets builder for the Open Data Platform REST API and Workspace Backend Connector."
5
5
  authors = ["OpenBB <hello@openbb.co>"]
6
6
  license = "AGPL-3.0-only"
@@ -15,7 +15,7 @@ openbb-api = "openbb_platform_api.main:main"
15
15
 
16
16
  [tool.poetry.dependencies]
17
17
  python = ">=3.10,<4"
18
- openbb-core = "^1.6.0"
18
+ openbb-core = "^1.6.1"
19
19
  deepdiff = ">=8.6.1"
20
20
 
21
21
  [build-system]