diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index b23a0070afcc..e71252bbeb7f 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -49,7 +49,7 @@ jobs: if: github.event_name == 'pull_request' run: | # "Checking PR diff" - echo "terminal_files=$(git diff --name-status origin/${{ github.base_ref }}...${{ github.head_ref }} | grep 'openbb_terminal/.*\.py$' | grep -v '^D' | cut -f 2- | xargs)" >> $GITHUB_ENV + echo "terminal_files=$(git diff --diff-filter=d --name-only origin/${{ github.base_ref }}...${{ github.head_ref }} | grep 'openbb_terminal/.*\.py$' | grep -v 'openbb_terminal/openbb/package' | grep -v 'integration' | grep -v 'tests' | xargs)" >> $GITHUB_ENV echo $terminal_files echo "platform_files=$(git diff --diff-filter=d --name-only origin/${{ github.base_ref }}...${{ github.head_ref }} | grep 'openbb_platform/.*\.py$' | grep -v 'openbb_platform/openbb/package' | grep -v 'integration' | grep -v 'tests' | xargs)" >> $GITHUB_ENV echo $platform_files @@ -67,18 +67,19 @@ jobs: - run: black --diff --check . - run: codespell --ignore-words=.codespell.ignore --skip="$(tr '\n' ',' < .codespell.skip | sed 's/,$//')" --quiet-level=2 - run: ruff . - - run: | - # Run linters for openbb_terminal - if [ -n "${{ env.terminal_files }}" ]; then - mypy --ignore-missing-imports ${{ env.terminal_files }} - pylint terminal.py ${{ env.terminal_files }} - else - echo "No Python files changed in openbb_terminal" - fi + # TODO: Enable linters for openbb_terminal once we're ready + # - run: | + # # Run linters for openbb_terminal + # if [ -n "${{ env.terminal_files }}" ]; then + # mypy --ignore-missing-imports ${{ env.terminal_files }} + # pylint terminal.py ${{ env.terminal_files }} + # else + # echo "No Python files changed in openbb_terminal" + # fi - run: | # Run linters for openbb_platform if [ -n "${{ env.platform_files }}" ]; then - # Add mypy to this part of the linting workflow once we're ready + # TODO: Add mypy to this part of the linting workflow once we're ready pylint ${{ env.platform_files }} else echo "No Python files changed in openbb_platform" diff --git a/openbb_platform/core/poetry.lock b/openbb_platform/core/poetry.lock index 354e99812eca..cf0c9a0f324d 100644 --- a/openbb_platform/core/poetry.lock +++ b/openbb_platform/core/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -756,8 +756,8 @@ files = [ [package.dependencies] numpy = [ {version = ">=1.20.3", markers = "python_version < \"3.10\""}, - {version = ">=1.21.0", markers = "python_version >= \"3.10\" and python_version < \"3.11\""}, {version = ">=1.23.2", markers = "python_version >= \"3.11\""}, + {version = ">=1.21.0", markers = "python_version >= \"3.10\" and python_version < \"3.11\""}, ] python-dateutil = ">=2.8.2" pytz = ">=2020.1" @@ -1140,6 +1140,7 @@ files = [ {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, diff --git a/openbb_platform/core/pyproject.toml b/openbb_platform/core/pyproject.toml index 727f941ea5d5..ee32f958919a 100644 --- a/openbb_platform/core/pyproject.toml +++ b/openbb_platform/core/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" authors = ["OpenBB Team "] readme = "README.md" diff --git a/openbb_platform/extensions/commodity/poetry.lock b/openbb_platform/extensions/commodity/poetry.lock index a75e17b86fd2..ce2c732e7599 100644 --- a/openbb_platform/extensions/commodity/poetry.lock +++ b/openbb_platform/extensions/commodity/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -715,13 +715,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1409,4 +1409,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/extensions/commodity/pyproject.toml b/openbb_platform/extensions/commodity/pyproject.toml index 7f9ffb8ac669..cc12ec834d56 100644 --- a/openbb_platform/extensions/commodity/pyproject.toml +++ b/openbb_platform/extensions/commodity/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-commodity" -version = "1.0.0" +version = "1.0.1" description = "Commodity extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_commodity" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/extensions/crypto/poetry.lock b/openbb_platform/extensions/crypto/poetry.lock index 6e22cb3c9de3..35758358bcee 100644 --- a/openbb_platform/extensions/crypto/poetry.lock +++ b/openbb_platform/extensions/crypto/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -697,13 +697,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1416,4 +1416,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/extensions/crypto/pyproject.toml b/openbb_platform/extensions/crypto/pyproject.toml index d471e1ebd2a1..29fe51d73b3a 100644 --- a/openbb_platform/extensions/crypto/pyproject.toml +++ b/openbb_platform/extensions/crypto/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-crypto" -version = "1.1.2" +version = "1.1.3" description = "Crypto extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_crypto" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/extensions/currency/poetry.lock b/openbb_platform/extensions/currency/poetry.lock index 6e22cb3c9de3..35758358bcee 100644 --- a/openbb_platform/extensions/currency/poetry.lock +++ b/openbb_platform/extensions/currency/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -697,13 +697,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1416,4 +1416,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/extensions/currency/pyproject.toml b/openbb_platform/extensions/currency/pyproject.toml index 3ccd580acbe0..cb8803829da0 100644 --- a/openbb_platform/extensions/currency/pyproject.toml +++ b/openbb_platform/extensions/currency/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-currency" -version = "1.1.2" +version = "1.1.3" description = "Currency extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_currency" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/extensions/derivatives/poetry.lock b/openbb_platform/extensions/derivatives/poetry.lock index e05f792c9c82..66e3fcdd2dd8 100644 --- a/openbb_platform/extensions/derivatives/poetry.lock +++ b/openbb_platform/extensions/derivatives/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -712,13 +712,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1431,4 +1431,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/extensions/derivatives/pyproject.toml b/openbb_platform/extensions/derivatives/pyproject.toml index c471b74a37a4..b1195549ce96 100644 --- a/openbb_platform/extensions/derivatives/pyproject.toml +++ b/openbb_platform/extensions/derivatives/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-derivatives" -version = "1.1.2" +version = "1.1.3" description = "Derivatives extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_derivatives" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/extensions/devtools/poetry.lock b/openbb_platform/extensions/devtools/poetry.lock index 6baf9cf9c920..2e09daee50d7 100644 --- a/openbb_platform/extensions/devtools/poetry.lock +++ b/openbb_platform/extensions/devtools/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "appnope" @@ -1781,6 +1781,7 @@ files = [ {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, diff --git a/openbb_platform/extensions/devtools/pyproject.toml b/openbb_platform/extensions/devtools/pyproject.toml index 691f26a8f08d..cfe4eb84a6f1 100644 --- a/openbb_platform/extensions/devtools/pyproject.toml +++ b/openbb_platform/extensions/devtools/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-devtools" -version = "1.1.3" +version = "1.1.4" description = "Tools for OpenBB Platform Developers" authors = ["OpenBB Team "] readme = "README.md" diff --git a/openbb_platform/extensions/econometrics/poetry.lock b/openbb_platform/extensions/econometrics/poetry.lock index 7ec678aed3db..b43286d09e31 100644 --- a/openbb_platform/extensions/econometrics/poetry.lock +++ b/openbb_platform/extensions/econometrics/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -841,13 +841,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1794,4 +1794,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.12" -content-hash = "5000f97a4ae49fd8ea77fdb296e847d2d0496f1f083d09a67fae3e3998d4a382" +content-hash = "7f57eea96c25c551187a9445334a14e016d5487555b97fcbba34f524c1ddd049" diff --git a/openbb_platform/extensions/econometrics/pyproject.toml b/openbb_platform/extensions/econometrics/pyproject.toml index 0eefe06106e4..e0446baf439d 100644 --- a/openbb_platform/extensions/econometrics/pyproject.toml +++ b/openbb_platform/extensions/econometrics/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-econometrics" -version = "1.1.2" +version = "1.1.3" description = "Econometrics Toolkit for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -12,7 +12,7 @@ scipy = "^1.10.1" statsmodels = "^0.14.0" arch = "^5.5.0" linearmodels = "<=4.25" # ^4.26 has setuptools-scm in setup_requires -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/extensions/economy/poetry.lock b/openbb_platform/extensions/economy/poetry.lock index 6e22cb3c9de3..35758358bcee 100644 --- a/openbb_platform/extensions/economy/poetry.lock +++ b/openbb_platform/extensions/economy/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -697,13 +697,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1416,4 +1416,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/extensions/economy/pyproject.toml b/openbb_platform/extensions/economy/pyproject.toml index 8c7f3a08a354..62881036838b 100644 --- a/openbb_platform/extensions/economy/pyproject.toml +++ b/openbb_platform/extensions/economy/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-economy" -version = "1.1.2" +version = "1.1.3" description = "Economy extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_economy" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/extensions/equity/poetry.lock b/openbb_platform/extensions/equity/poetry.lock index 6e22cb3c9de3..35758358bcee 100644 --- a/openbb_platform/extensions/equity/poetry.lock +++ b/openbb_platform/extensions/equity/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -697,13 +697,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1416,4 +1416,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/extensions/equity/pyproject.toml b/openbb_platform/extensions/equity/pyproject.toml index 028ac86d3c95..b308566bae29 100644 --- a/openbb_platform/extensions/equity/pyproject.toml +++ b/openbb_platform/extensions/equity/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-equity" -version = "1.1.2" +version = "1.1.3" description = "Equity extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_equity" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/extensions/etf/poetry.lock b/openbb_platform/extensions/etf/poetry.lock index 29655e20a695..f76b6b005b46 100644 --- a/openbb_platform/extensions/etf/poetry.lock +++ b/openbb_platform/extensions/etf/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -678,13 +678,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1397,4 +1397,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.12" -content-hash = "12eda5fbc9aa82286a89139fe606f3c4ef8bed9d145f14d178de19b200b0b913" +content-hash = "74b7847e708942c7f6833913502134eb7de72d43c5ea6ba50c4069776f75489d" diff --git a/openbb_platform/extensions/etf/pyproject.toml b/openbb_platform/extensions/etf/pyproject.toml index 5dd456433f3b..d7dbdaa469f5 100644 --- a/openbb_platform/extensions/etf/pyproject.toml +++ b/openbb_platform/extensions/etf/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-etf" -version = "1.1.2" +version = "1.1.3" description = "ETF extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_etf" }] [tool.poetry.dependencies] python = ">=3.8,<3.12" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/extensions/fixedincome/poetry.lock b/openbb_platform/extensions/fixedincome/poetry.lock index 6e22cb3c9de3..35758358bcee 100644 --- a/openbb_platform/extensions/fixedincome/poetry.lock +++ b/openbb_platform/extensions/fixedincome/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -697,13 +697,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1416,4 +1416,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/extensions/fixedincome/pyproject.toml b/openbb_platform/extensions/fixedincome/pyproject.toml index 7295d123a3c2..8eb6b166350e 100644 --- a/openbb_platform/extensions/fixedincome/pyproject.toml +++ b/openbb_platform/extensions/fixedincome/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-fixedincome" -version = "1.1.2" +version = "1.1.3" description = "Fixed income extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_fixedincome" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/extensions/index/poetry.lock b/openbb_platform/extensions/index/poetry.lock index 8ea7f9bf4c97..1fdfad63b6b9 100644 --- a/openbb_platform/extensions/index/poetry.lock +++ b/openbb_platform/extensions/index/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -682,13 +682,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1401,4 +1401,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/extensions/index/pyproject.toml b/openbb_platform/extensions/index/pyproject.toml index 7cfcd84fcf50..4232e66b0e4e 100644 --- a/openbb_platform/extensions/index/pyproject.toml +++ b/openbb_platform/extensions/index/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-index" -version = "1.1.2" +version = "1.1.3" description = "Index extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_index" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/extensions/news/poetry.lock b/openbb_platform/extensions/news/poetry.lock index 6e22cb3c9de3..35758358bcee 100644 --- a/openbb_platform/extensions/news/poetry.lock +++ b/openbb_platform/extensions/news/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -697,13 +697,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1416,4 +1416,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/extensions/news/pyproject.toml b/openbb_platform/extensions/news/pyproject.toml index e4b1f9839af0..b130bc6a43bf 100644 --- a/openbb_platform/extensions/news/pyproject.toml +++ b/openbb_platform/extensions/news/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-news" -version = "1.1.2" +version = "1.1.3" description = "News extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_news" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/extensions/quantitative/poetry.lock b/openbb_platform/extensions/quantitative/poetry.lock index 0c1cc2ba56da..d771c611109e 100644 --- a/openbb_platform/extensions/quantitative/poetry.lock +++ b/openbb_platform/extensions/quantitative/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -682,13 +682,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1538,4 +1538,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.12" -content-hash = "1077054b5f338684ab468e209e6dc5f104acae6b9a069d24cd293037cd418886" +content-hash = "3406266417991675ca17a692d82c9aab2c0be897f297965ab808ddb7547635ae" diff --git a/openbb_platform/extensions/quantitative/pyproject.toml b/openbb_platform/extensions/quantitative/pyproject.toml index bf66ada140f5..af9d13f06314 100644 --- a/openbb_platform/extensions/quantitative/pyproject.toml +++ b/openbb_platform/extensions/quantitative/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-quantitative" -version = "1.1.2" +version = "1.1.3" description = "Quantitative Analysis extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -11,7 +11,7 @@ python = ">=3.8,<3.12" # scipy forces python <4.0 explicitly scipy = "^1.10.1" statsmodels = "^0.14.0" pandas-ta = "^0.3.14b" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/extensions/regulators/poetry.lock b/openbb_platform/extensions/regulators/poetry.lock index 657a93de230e..863b920d0f62 100644 --- a/openbb_platform/extensions/regulators/poetry.lock +++ b/openbb_platform/extensions/regulators/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -678,13 +678,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1397,4 +1397,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.12" -content-hash = "12eda5fbc9aa82286a89139fe606f3c4ef8bed9d145f14d178de19b200b0b913" +content-hash = "74b7847e708942c7f6833913502134eb7de72d43c5ea6ba50c4069776f75489d" diff --git a/openbb_platform/extensions/regulators/pyproject.toml b/openbb_platform/extensions/regulators/pyproject.toml index d23f019afbea..1335795dd8c0 100644 --- a/openbb_platform/extensions/regulators/pyproject.toml +++ b/openbb_platform/extensions/regulators/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-regulators" -version = "1.1.2" +version = "1.1.3" description = "Markets and Agency Regulators extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_regulators" }] [tool.poetry.dependencies] python = ">=3.8,<3.12" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/extensions/technical/poetry.lock b/openbb_platform/extensions/technical/poetry.lock index 4a2fd648b142..08843bdc681e 100644 --- a/openbb_platform/extensions/technical/poetry.lock +++ b/openbb_platform/extensions/technical/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -648,13 +648,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1562,4 +1562,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.12" -content-hash = "6f7fbae00770ff5f88de63e4bdf13090b1d61cb8b21d751bc5bfb560171535db" +content-hash = "2a32f381599f7ba1c04d9d59baddfd30a9b008186d69ca6b2e7e06a958a3192a" diff --git a/openbb_platform/extensions/technical/pyproject.toml b/openbb_platform/extensions/technical/pyproject.toml index 8a982a4e798a..4658b5ef9c2c 100644 --- a/openbb_platform/extensions/technical/pyproject.toml +++ b/openbb_platform/extensions/technical/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-technical" -version = "1.1.3" +version = "1.1.4" description = "Technical Analysis extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -12,7 +12,7 @@ scipy = "^1.10.1" statsmodels = "^0.14.0" scikit-learn = "^1.3.1" pandas-ta = "^0.3.14b" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/obbject_extensions/charting/poetry.lock b/openbb_platform/obbject_extensions/charting/poetry.lock index 66c65c499123..da483ba4f592 100644 --- a/openbb_platform/obbject_extensions/charting/poetry.lock +++ b/openbb_platform/obbject_extensions/charting/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -933,13 +933,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -2263,4 +2263,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.12" -content-hash = "901cc9d6b4a6c731665b9eb7774d26d044ea8d757a83d612b6acf3f19bb3ba95" +content-hash = "5f80104e88d890e9812f97b23393472a6676f8339edd59fd6c64d58fd4472b7e" diff --git a/openbb_platform/obbject_extensions/charting/pyproject.toml b/openbb_platform/obbject_extensions/charting/pyproject.toml index e5a7be6372bd..7a78ef8afae8 100644 --- a/openbb_platform/obbject_extensions/charting/pyproject.toml +++ b/openbb_platform/obbject_extensions/charting/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-charting" -version = "2.0.0" +version = "2.0.1" description = "Charting extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -16,7 +16,7 @@ pywry = "^0.6.1" svglib = "^1.5.1" nbformat = "^5.9.2" pandas-ta = "^0.3.14b" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/openbb/assets/extension_map.json b/openbb_platform/openbb/assets/extension_map.json index 3a653d729ce2..c326eda7652f 100644 --- a/openbb_platform/openbb/assets/extension_map.json +++ b/openbb_platform/openbb/assets/extension_map.json @@ -1,28 +1,28 @@ { "openbb_core_extension": [ - "commodity@1.0.0", - "crypto@1.1.2", - "currency@1.1.2", - "derivatives@1.1.2", - "economy@1.1.2", - "equity@1.1.2", - "etf@1.1.2", - "fixedincome@1.1.2", - "index@1.1.2", - "news@1.1.2", - "regulators@1.1.2" + "commodity@1.0.1", + "crypto@1.1.3", + "currency@1.1.3", + "derivatives@1.1.3", + "economy@1.1.3", + "equity@1.1.3", + "etf@1.1.3", + "fixedincome@1.1.3", + "index@1.1.3", + "news@1.1.3", + "regulators@1.1.3" ], "openbb_provider_extension": [ - "benzinga@1.1.2", - "federal_reserve@1.1.2", - "fmp@1.1.2", - "fred@1.1.2", - "intrinio@1.1.2", - "oecd@1.1.2", - "polygon@1.1.2", - "sec@1.1.2", - "tiingo@1.1.2", - "tradingeconomics@1.1.2", - "yfinance@1.1.2" + "benzinga@1.1.3", + "federal_reserve@1.1.3", + "fmp@1.1.3", + "fred@1.1.3", + "intrinio@1.1.3", + "oecd@1.1.3", + "polygon@1.1.3", + "sec@1.1.3", + "tiingo@1.1.3", + "tradingeconomics@1.1.3", + "yfinance@1.1.3" ] } \ No newline at end of file diff --git a/openbb_platform/openbb/package/__extensions__.py b/openbb_platform/openbb/package/__extensions__.py index f33f5962eea7..b47e566ee69c 100644 --- a/openbb_platform/openbb/package/__extensions__.py +++ b/openbb_platform/openbb/package/__extensions__.py @@ -20,29 +20,29 @@ class Extensions(Container): /regulators Extensions: - - commodity@1.0.0 - - crypto@1.1.2 - - currency@1.1.2 - - derivatives@1.1.2 - - economy@1.1.2 - - equity@1.1.2 - - etf@1.1.2 - - fixedincome@1.1.2 - - index@1.1.2 - - news@1.1.2 - - regulators@1.1.2 - - - benzinga@1.1.2 - - federal_reserve@1.1.2 - - fmp@1.1.2 - - fred@1.1.2 - - intrinio@1.1.2 - - oecd@1.1.2 - - polygon@1.1.2 - - sec@1.1.2 - - tiingo@1.1.2 - - tradingeconomics@1.1.2 - - yfinance@1.1.2 """ + - commodity@1.0.1 + - crypto@1.1.3 + - currency@1.1.3 + - derivatives@1.1.3 + - economy@1.1.3 + - equity@1.1.3 + - etf@1.1.3 + - fixedincome@1.1.3 + - index@1.1.3 + - news@1.1.3 + - regulators@1.1.3 + + - benzinga@1.1.3 + - federal_reserve@1.1.3 + - fmp@1.1.3 + - fred@1.1.3 + - intrinio@1.1.3 + - oecd@1.1.3 + - polygon@1.1.3 + - sec@1.1.3 + - tiingo@1.1.3 + - tradingeconomics@1.1.3 + - yfinance@1.1.3 """ # fmt: on def __repr__(self) -> str: diff --git a/openbb_platform/poetry.lock b/openbb_platform/poetry.lock index 49c501e24479..c23037cc7bc2 100644 --- a/openbb_platform/poetry.lock +++ b/openbb_platform/poetry.lock @@ -638,6 +638,29 @@ files = [ [package.extras] test = ["pytest (>=6)"] +[[package]] +name = "exchange-calendars" +version = "4.2.8" +description = "Calendars for securities exchanges" +optional = true +python-versions = "~=3.8" +files = [ + {file = "exchange_calendars-4.2.8-py3-none-any.whl", hash = "sha256:3695afd0608c6507ce3016dfcb68a1698220016a049b45d42b4dfa9ecf85a15c"}, + {file = "exchange_calendars-4.2.8.tar.gz", hash = "sha256:1598b6219a58e7be218c640f389375e39c9c12513c7db82d7591ae56f64467f9"}, +] + +[package.dependencies] +korean-lunar-calendar = "*" +numpy = "*" +pandas = ">=1.1" +pyluach = "*" +python-dateutil = "*" +pytz = "*" +toolz = "*" + +[package.extras] +dev = ["flake8", "hypothesis", "pip-tools", "pytest", "pytest-benchmark", "pytest-xdist"] + [[package]] name = "fastapi" version = "0.104.1" @@ -1064,6 +1087,17 @@ traitlets = ">=5.3" docs = ["myst-parser", "pydata-sphinx-theme", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"] test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] +[[package]] +name = "korean-lunar-calendar" +version = "0.3.1" +description = "Korean Lunar Calendar" +optional = true +python-versions = "*" +files = [ + {file = "korean_lunar_calendar-0.3.1-py3-none-any.whl", hash = "sha256:392757135c492c4f42a604e6038042953c35c6f449dda5f27e3f86a7f9c943e5"}, + {file = "korean_lunar_calendar-0.3.1.tar.gz", hash = "sha256:eb2c485124a061016926bdea6d89efdf9b9fdbf16db55895b6cf1e5bec17b857"}, +] + [[package]] name = "linearmodels" version = "4.25" @@ -1424,77 +1458,77 @@ files = [ [[package]] name = "openbb-alpha-vantage" -version = "1.1.2" +version = "1.1.3" description = "Alpha Vantage extension for OpenBB" optional = true python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_alpha_vantage-1.1.2-py3-none-any.whl", hash = "sha256:4dd4053deda5a6b8d8f25fbdf649a8857453d1ad5911159e24b4631ec5008a8d"}, - {file = "openbb_alpha_vantage-1.1.2.tar.gz", hash = "sha256:508007f6a4fba9168078f3fdec989a35f79c60e688448bcdc0c649d9e9a8bbe5"}, + {file = "openbb_alpha_vantage-1.1.3-py3-none-any.whl", hash = "sha256:75b91eb3579b89c20ddba601dc06fdf9707eba1c8c0a36302559296a8bfabff3"}, + {file = "openbb_alpha_vantage-1.1.3.tar.gz", hash = "sha256:8f11e66d032d316e6dfbd950870cc4173fc691800d6d44c9c4eda4ebbcbbecc1"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-benzinga" -version = "1.1.2" +version = "1.1.3" description = "Benzinga extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_benzinga-1.1.2-py3-none-any.whl", hash = "sha256:a43a7376470cd42381bd0b5e78b4803c21ddde9880fedbd3a3587415b1205409"}, - {file = "openbb_benzinga-1.1.2.tar.gz", hash = "sha256:95d2b427189cd6153122a7264967626ace9e41f5730027ad21580b178fe25cad"}, + {file = "openbb_benzinga-1.1.3-py3-none-any.whl", hash = "sha256:a3aacd078701e2246b2b2cf0862cc7dde6d236da2f1aab03f7c6791999b92377"}, + {file = "openbb_benzinga-1.1.3.tar.gz", hash = "sha256:9b5c79a7c8d9160e37577a2420d9da355d97c43ddec6983c3617e5472137e043"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-biztoc" -version = "1.1.2" +version = "1.1.3" description = "" optional = true python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_biztoc-1.1.2-py3-none-any.whl", hash = "sha256:b84d690395a8f184ff5639fbcd6d9f08ff600c5dc3a319e7f6eef2ef32ba348e"}, - {file = "openbb_biztoc-1.1.2.tar.gz", hash = "sha256:d3b96375e60bd46b441c1cd87f80bcd781548c09d42ead5f1d58f52211ed4008"}, + {file = "openbb_biztoc-1.1.3-py3-none-any.whl", hash = "sha256:4d8b168324935db90881cfc7b56087d36daa4a5ccf1250a7fe42ebb1c02bf0c5"}, + {file = "openbb_biztoc-1.1.3.tar.gz", hash = "sha256:43e539638d28048ac68da6a4daf4fd5f284b08f87e2115160bc38d8fa45987f2"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" requests-cache = ">=1.1.0,<2.0.0" [[package]] name = "openbb-cboe" -version = "1.1.2" +version = "1.1.3" description = "CBOE extension for OpenBB" optional = true python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_cboe-1.1.2-py3-none-any.whl", hash = "sha256:bdf8ac557efde0252c4ca7700dcfc7841ff20b04a0cf6b64043be7c15e090db6"}, - {file = "openbb_cboe-1.1.2.tar.gz", hash = "sha256:c105db8eb45630bd5068dd04764b8edd12dab11fc93e9c28be2bf8600fd2a1f2"}, + {file = "openbb_cboe-1.1.3-py3-none-any.whl", hash = "sha256:720e3e8fea7f4aee29bf23f0bdbe258ae176e866ea90135113824c030716fa7e"}, + {file = "openbb_cboe-1.1.3.tar.gz", hash = "sha256:01a726568c63c35d00fea4956082a071b6dfc2699db61d96ef91054b667cb33d"}, ] [package.dependencies] aiohttp-client-cache = ">=0.10.0,<0.11.0" aiosqlite = ">=0.19.0,<0.20.0" -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-charting" -version = "2.0.0" +version = "2.0.1" description = "Charting extension for OpenBB" optional = true python-versions = ">=3.8,<3.12" files = [ - {file = "openbb_charting-2.0.0-py3-none-any.whl", hash = "sha256:40916c0cb19b28051e65be4f54cc4624ff2478e56f582912e00df0084faacf20"}, - {file = "openbb_charting-2.0.0.tar.gz", hash = "sha256:5017bde936ee4b8eea89f43a3d37ee8098f0c8923d6691d3708b51e968f75f46"}, + {file = "openbb_charting-2.0.1-py3-none-any.whl", hash = "sha256:c5d9f4155e76a9bcb59a2c1fc2998e174ad9ca94d57c9bcc89d8bb5bb1b5bbdc"}, + {file = "openbb_charting-2.0.1.tar.gz", hash = "sha256:f6193ec5876d00bbf87cab0eddc6efe286dc55df4799341d1c0ac4579423697d"}, ] [package.dependencies] nbformat = ">=5.9.2,<6.0.0" -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" pandas-ta = ">=0.3.14b,<0.4.0" plotly = ">=5.17.0,<6.0.0" pywry = ">=0.6.1,<0.7.0" @@ -1505,27 +1539,27 @@ svglib = ">=1.5.1,<2.0.0" [[package]] name = "openbb-commodity" -version = "1.0.0" +version = "1.0.1" description = "Commodity extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_commodity-1.0.0-py3-none-any.whl", hash = "sha256:c23ed88bac90b04018fed5293ac494e63c2371c048eec46f133aa9a7c0baffac"}, - {file = "openbb_commodity-1.0.0.tar.gz", hash = "sha256:42327f5ad9cb9472a7137db543eed5772afaed72913a2836aa2a3e6c9561d2cf"}, + {file = "openbb_commodity-1.0.1-py3-none-any.whl", hash = "sha256:f1ec9ec4f8e88c8ac0f528f935d2daf36e6dd6e5dc95b11dbee05139aa37f02c"}, + {file = "openbb_commodity-1.0.1.tar.gz", hash = "sha256:c14d763b060ea6b2b57efbd02ddbe770caf278d06c1266abf217068573add293"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1547,248 +1581,248 @@ websockets = ">=12.0,<13.0" [[package]] name = "openbb-crypto" -version = "1.1.2" +version = "1.1.3" description = "Crypto extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_crypto-1.1.2-py3-none-any.whl", hash = "sha256:d7afe96b6163dde98695271bc2398e1751c0bad5d69e15d925b41ae861580090"}, - {file = "openbb_crypto-1.1.2.tar.gz", hash = "sha256:4d0eda3ba8e5ba9811a5264013909f71f27b4af057fb2993425f12c43eefcfaa"}, + {file = "openbb_crypto-1.1.3-py3-none-any.whl", hash = "sha256:e21a97ed905ca4d2fec404884aa52aaade246c4f1026da7dc8af1014adc71ded"}, + {file = "openbb_crypto-1.1.3.tar.gz", hash = "sha256:a7d1f134241b689eedfeb1a5ee2d9b6ab9cd417ab85670f7a14217d243db1a52"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-currency" -version = "1.1.2" +version = "1.1.3" description = "Currency extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_currency-1.1.2-py3-none-any.whl", hash = "sha256:5ae881af5f8b0446985b0ad8bdd2a5eb35d63abdd47360b2892c68ed1a6165f5"}, - {file = "openbb_currency-1.1.2.tar.gz", hash = "sha256:9b6d97d75edb965046020f13e5c8a9031dd20a0c195d1bc5ba52562b1f262424"}, + {file = "openbb_currency-1.1.3-py3-none-any.whl", hash = "sha256:3fe679bf8e028b53578d2d98c2e4f8f537d7d7121899699253c06d7cd22e4b72"}, + {file = "openbb_currency-1.1.3.tar.gz", hash = "sha256:9761c84518cc54729e0cdf95564ed9ee6898b8db47d62cdc045d3b28448e8b66"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-derivatives" -version = "1.1.2" +version = "1.1.3" description = "Derivatives extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_derivatives-1.1.2-py3-none-any.whl", hash = "sha256:ff41026e580f5948aac82d720aa74091217b5560834836894178c7f43931cd0c"}, - {file = "openbb_derivatives-1.1.2.tar.gz", hash = "sha256:b0b3b7beba9b0545c10786009d4b5f744e49311af061df1226d71405ee2d0d85"}, + {file = "openbb_derivatives-1.1.3-py3-none-any.whl", hash = "sha256:d765a6d2068af098bc91570f50c139ad45433bfe91f9e90722cd5fa6de5bdacd"}, + {file = "openbb_derivatives-1.1.3.tar.gz", hash = "sha256:87e72c8a718ea3c9eed2aa9a906ffb0bad6031ddc4410375781cc6ac1d4823c3"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-ecb" -version = "1.1.2" +version = "1.1.3" description = "ECB extension for OpenBB" optional = true python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_ecb-1.1.2-py3-none-any.whl", hash = "sha256:30331533dcd4a357315259db0d433cf3e9b4f265953baeeffde1b101b7277ef6"}, - {file = "openbb_ecb-1.1.2.tar.gz", hash = "sha256:e855a1b160c09c6e58a13dc98baf83992797b7f310652e86d345c85486bd21b7"}, + {file = "openbb_ecb-1.1.3-py3-none-any.whl", hash = "sha256:d0f5df2f0c2282c485cf010a14f11aa016ff0ec5ddf8888ec7d4f6bbcef2c1d0"}, + {file = "openbb_ecb-1.1.3.tar.gz", hash = "sha256:ab780ad7184e18f8341141221d41637f3dd44c2b89191c16ba6d0e16605ef013"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" xmltodict = ">=0.13.0,<0.14.0" [[package]] name = "openbb-econometrics" -version = "1.1.2" +version = "1.1.3" description = "Econometrics Toolkit for OpenBB" optional = true python-versions = ">=3.8,<3.12" files = [ - {file = "openbb_econometrics-1.1.2-py3-none-any.whl", hash = "sha256:051c21406d6a19d3a6972f42293af7e18b49600e32634012df11ed3f91ec9c95"}, - {file = "openbb_econometrics-1.1.2.tar.gz", hash = "sha256:64a9f31665f33ea8126941373117cdd8974c9ebb4615babb376644bd71da7bbb"}, + {file = "openbb_econometrics-1.1.3-py3-none-any.whl", hash = "sha256:e2d42d4b35f6bda32f1a450a8b3fc943aca0ee1e4faa67888c629a23b6f77dba"}, + {file = "openbb_econometrics-1.1.3.tar.gz", hash = "sha256:7f901c9d199a346448b4a96243d061e8189c88e9f0df2437fb842027dc8b4c9d"}, ] [package.dependencies] arch = ">=5.5.0,<6.0.0" linearmodels = "<=4.25" -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" scipy = ">=1.10.1,<2.0.0" statsmodels = ">=0.14.0,<0.15.0" [[package]] name = "openbb-economy" -version = "1.1.2" +version = "1.1.3" description = "Economy extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_economy-1.1.2-py3-none-any.whl", hash = "sha256:5ace513874c9748b30a37d701cfed3ef99cca1d79ccb95ce1c5d6df31182efb3"}, - {file = "openbb_economy-1.1.2.tar.gz", hash = "sha256:ca0a8df1b11ff9c8415abfdb3d09369f54df1622538bafa78837266ca9076107"}, + {file = "openbb_economy-1.1.3-py3-none-any.whl", hash = "sha256:d58bc0aa153363cbced7244cb8a8ecd933f5b1c7ce2f860791f31d346556c86d"}, + {file = "openbb_economy-1.1.3.tar.gz", hash = "sha256:49c7ac46df264a186c43867a4c0659cf77e4ad7f008b7138291a2dc1793ae646"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-equity" -version = "1.1.2" +version = "1.1.3" description = "Equity extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_equity-1.1.2-py3-none-any.whl", hash = "sha256:b2d9936f17443ccf786c9e728bce751955898f1d4e4e5e903ba2e2b38120b2aa"}, - {file = "openbb_equity-1.1.2.tar.gz", hash = "sha256:1bed727283ae57f36e3fb05873f5f3ebba52a9fba7244d77471023ed9b74f462"}, + {file = "openbb_equity-1.1.3-py3-none-any.whl", hash = "sha256:22a6ad7d5eebe5c950d763d222f9965254ffdfa04491ba58da9c4b085bc4c346"}, + {file = "openbb_equity-1.1.3.tar.gz", hash = "sha256:04ce97452815325dd81e77dc7cffb08564293fbcc7595064a4d55ff367869214"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-etf" -version = "1.1.2" +version = "1.1.3" description = "ETF extension for OpenBB" optional = false python-versions = ">=3.8,<3.12" files = [ - {file = "openbb_etf-1.1.2-py3-none-any.whl", hash = "sha256:b4db2e119bbeba1baef7354b87a36f148de71e019e40e0d3ecc236a4096a70c4"}, - {file = "openbb_etf-1.1.2.tar.gz", hash = "sha256:164d477a9112ef8b63bc0ceaa04422578df0bb31c944843cf5a86d49bd699cce"}, + {file = "openbb_etf-1.1.3-py3-none-any.whl", hash = "sha256:b8c78eb7d2a6eb69401a084ddfc5ab1c1d675ac837b3ee61d1661d6eca87c9c2"}, + {file = "openbb_etf-1.1.3.tar.gz", hash = "sha256:e4ede3d70afcbe632756c2ad6550758430818689976f83c1d6236d6358e82334"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-federal-reserve" -version = "1.1.2" +version = "1.1.3" description = "US Federal Reserve Data Extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_federal_reserve-1.1.2-py3-none-any.whl", hash = "sha256:5b6cccbcf21b9af0cb68d7e34519dcf3f3fb0fcb0af9a804f41661fa850fef69"}, - {file = "openbb_federal_reserve-1.1.2.tar.gz", hash = "sha256:7c9537455599c19cc124be8220cd18bcb64c9fc649476d1cac1cabde35d356e5"}, + {file = "openbb_federal_reserve-1.1.3-py3-none-any.whl", hash = "sha256:865a9ade25d1ee54d7fa98439f9b721338186012c7eb111a7f04e6aa3a7551a7"}, + {file = "openbb_federal_reserve-1.1.3.tar.gz", hash = "sha256:141c4f4da61aee0d1c01fe2aa20c4738cce5c279a41297ea1d7edc19ab44aa67"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-finra" -version = "1.1.2" +version = "1.1.3" description = "FINRA extension for OpenBB" optional = true python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_finra-1.1.2-py3-none-any.whl", hash = "sha256:f54a6311066edf08f0130acbd0180baeb4884d7681e56b5dedfedd594df85684"}, - {file = "openbb_finra-1.1.2.tar.gz", hash = "sha256:d9ad5c76d02aaa6f70ed5eab980e3656aff4b9adbb2a47e2465a472d12a6b1f1"}, + {file = "openbb_finra-1.1.3-py3-none-any.whl", hash = "sha256:05115e2916786f3f4e26db2bc2c282afc9ecd2f94300005789fc875bceba3838"}, + {file = "openbb_finra-1.1.3.tar.gz", hash = "sha256:b4cac4d6f7c9c39c0b6057984e4a1851b5dd9e87ee451fe62acb07ac27763d63"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-finviz" -version = "1.0.1" +version = "1.0.2" description = "Finviz extension for OpenBB" optional = true python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_finviz-1.0.1-py3-none-any.whl", hash = "sha256:f7e4492166b33829f7b00802e8ccfdb88f2d5420d2a550acbeb3219d7fd89a23"}, - {file = "openbb_finviz-1.0.1.tar.gz", hash = "sha256:a39f5c3494f29f7a630222b1887d84466b525937bc199d9d077d491851b11e99"}, + {file = "openbb_finviz-1.0.2-py3-none-any.whl", hash = "sha256:fc228cfad7d7d4cb7c95d0c586e59f87fec25b274edea4e85ca967329d7c588b"}, + {file = "openbb_finviz-1.0.2.tar.gz", hash = "sha256:deb00aaf94855f22c40d2668d63b02264ca0f02b635b47f4ef36c4450f94cec9"}, ] [package.dependencies] finvizfinance = "0.14.7" -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-fixedincome" -version = "1.1.2" +version = "1.1.3" description = "Fixed income extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_fixedincome-1.1.2-py3-none-any.whl", hash = "sha256:3213b7800e07963d6b5cee1fe54d8e0c03d92d66f8aa35592905c042b07030cc"}, - {file = "openbb_fixedincome-1.1.2.tar.gz", hash = "sha256:2387178b621b8d10e761a42aa533fbc77f89208deff1a9c1ef9554e58c515689"}, + {file = "openbb_fixedincome-1.1.3-py3-none-any.whl", hash = "sha256:3d726b42a21ad0befaf8bc30531e6c0943809608ca790c2c292396b6f741c14e"}, + {file = "openbb_fixedincome-1.1.3.tar.gz", hash = "sha256:6f0ebfebaea728f2466a4f945839e3a0ce1b2298191420314c747464a32f4af9"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-fmp" -version = "1.1.2" +version = "1.1.3" description = "FMP extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_fmp-1.1.2-py3-none-any.whl", hash = "sha256:1a366b25667b6942cfc5ce92c3cecfd273e704bf79d29307362894e245c9a56f"}, - {file = "openbb_fmp-1.1.2.tar.gz", hash = "sha256:af67f224d3481271a3a76ffb287e70522500ebb01b7909900f8be457054a10ea"}, + {file = "openbb_fmp-1.1.3-py3-none-any.whl", hash = "sha256:0e38b35c8310e33eddbf7c0301f347366f699e2a49e558d17a9b744ff51f02d8"}, + {file = "openbb_fmp-1.1.3.tar.gz", hash = "sha256:f92f80eb145b107ceb2b9a4fae03954318ad2a87a903a9fb55791d7e9e65917a"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-fred" -version = "1.1.2" +version = "1.1.3" description = "FRED extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_fred-1.1.2-py3-none-any.whl", hash = "sha256:6b534cea53197a0b4a91fcd9100ba4e2227b0a4ccab2c49aa2012cf36bd6e8c9"}, - {file = "openbb_fred-1.1.2.tar.gz", hash = "sha256:5877afdc6ccdaa21c110ae536141745a7bdca0389278612043e2897dd3bbda4c"}, + {file = "openbb_fred-1.1.3-py3-none-any.whl", hash = "sha256:21c10ea36506d1d1a6458e4308534d060d336f38a6b86989da8918b0f83770fc"}, + {file = "openbb_fred-1.1.3.tar.gz", hash = "sha256:049fd7ae3c17041aa09cbba62f22e8986e8d9c2ccad524b2864d83bddf314d14"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-government-us" -version = "1.1.2" +version = "1.1.3" description = "US Government Data Extension for OpenBB" optional = true python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_government_us-1.1.2-py3-none-any.whl", hash = "sha256:8dcac71e59725b07f4b8b0db04a186fec6dbfd23cf1298a975a07f0a04fc9bdd"}, - {file = "openbb_government_us-1.1.2.tar.gz", hash = "sha256:355fb8e3d89bb314cf3b016a647d9f0c010a21b10742f861b33cb85ff6a3849e"}, + {file = "openbb_government_us-1.1.3-py3-none-any.whl", hash = "sha256:7a1d64489b1a851bf17ed896565a99873966c9f6b825d9c25101dd043244e938"}, + {file = "openbb_government_us-1.1.3.tar.gz", hash = "sha256:13b855d50d822c278119d53ac2bcbfa7e96c327610128ee21fef13aa6e5a24c8"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" random-user-agent = ">=1.0.1,<2.0.0" [[package]] name = "openbb-index" -version = "1.1.2" +version = "1.1.3" description = "Index extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_index-1.1.2-py3-none-any.whl", hash = "sha256:e0b1d1074f229a1018658a3280a7e3d8da41ae5ecd21ab0c88692c1ad361eb40"}, - {file = "openbb_index-1.1.2.tar.gz", hash = "sha256:50f67a71f3036867004bfdf93ea94402f2e559e32d02cc883260e37552699032"}, + {file = "openbb_index-1.1.3-py3-none-any.whl", hash = "sha256:e3264634736cd5c21159b5c4cd56279eeee3dc723bd2dc0149432e89c2a9a5a0"}, + {file = "openbb_index-1.1.3.tar.gz", hash = "sha256:d569fb3fb3896eaa1aeaba372efe8830f60e1517476809e52e7b1ce1aaa0090f"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-intrinio" -version = "1.1.2" +version = "1.1.3" description = "Intrinio extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_intrinio-1.1.2-py3-none-any.whl", hash = "sha256:b82bb092d3570f504a427a6a78dde68a017a3073259c45a3e36ca5737638ea2c"}, - {file = "openbb_intrinio-1.1.2.tar.gz", hash = "sha256:673eac1e880d686eebf885e049d091bf550c48d18dbfb7580424eff2bd78dfab"}, + {file = "openbb_intrinio-1.1.3-py3-none-any.whl", hash = "sha256:367ba3551f121d9164c53e63eff5170d7668eff8a69fae57927fc5020d4b9260"}, + {file = "openbb_intrinio-1.1.3.tar.gz", hash = "sha256:82bbe3415cf2782e0b99e41ecb1702615649d41b7bc79184592ba4bead6b997c"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" requests-cache = ">=1.1.0,<2.0.0" [[package]] @@ -1809,138 +1843,138 @@ random-user-agent = ">=1.0.1,<2.0.0" [[package]] name = "openbb-news" -version = "1.1.2" +version = "1.1.3" description = "News extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_news-1.1.2-py3-none-any.whl", hash = "sha256:43a02a8f614947b3e71a357b99f400058bb48d580b52b9cf230bd99a9b1f283a"}, - {file = "openbb_news-1.1.2.tar.gz", hash = "sha256:d976be29455e16c22133cb1ba886913e0ec0364060a274a34150b8a08c42c67e"}, + {file = "openbb_news-1.1.3-py3-none-any.whl", hash = "sha256:4716735d0e21670e646ecf401153a1e329d741d1b940831ae37352677498e073"}, + {file = "openbb_news-1.1.3.tar.gz", hash = "sha256:9af2f4be830d344ebc5be0b19fc7fb54014048d59c98368f2b8207f2ac0a2217"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-oecd" -version = "1.1.2" +version = "1.1.3" description = "OECD extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_oecd-1.1.2-py3-none-any.whl", hash = "sha256:23d088702ebf077143e2930a27302de92cf5119a9ef9590ea1664ca79320984c"}, - {file = "openbb_oecd-1.1.2.tar.gz", hash = "sha256:c5c3c5f8fb52de06368e7d6b438f79605446dae6b6f65cbb3d378f650a255469"}, + {file = "openbb_oecd-1.1.3-py3-none-any.whl", hash = "sha256:28dd91b7970847dda3aa75be8feed8c4e1e7ac10c06d6b1b7db048ff144ae2e4"}, + {file = "openbb_oecd-1.1.3.tar.gz", hash = "sha256:4e0ab94b68299f0ab70c26ffc09d0181a847c43368b4ab28cc1d81984121fc6a"}, ] [package.dependencies] defusedxml = ">=0.8.0rc2,<0.9.0" -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" urllib3 = ">1.26.16" [[package]] name = "openbb-polygon" -version = "1.1.2" +version = "1.1.3" description = "Polygon extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_polygon-1.1.2-py3-none-any.whl", hash = "sha256:538b309f41314f4a4c01769a590e4998fcf6ff55f1d6872b8ed363da4ceb3c16"}, - {file = "openbb_polygon-1.1.2.tar.gz", hash = "sha256:ae23a9407c1043642e99a8a600955f790597ada197da62b23908aa8f0a501e11"}, + {file = "openbb_polygon-1.1.3-py3-none-any.whl", hash = "sha256:135f0a201c4963c43ead6e838497d27de5b206edbf6b23c9742e639c1a679a8b"}, + {file = "openbb_polygon-1.1.3.tar.gz", hash = "sha256:c04a6590e4e8b15a4d53c0e4939fb850119f5a3f59eb5ff014701c7e626fce62"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-quantitative" -version = "1.1.2" +version = "1.1.3" description = "Quantitative Analysis extension for OpenBB" optional = true python-versions = ">=3.8,<3.12" files = [ - {file = "openbb_quantitative-1.1.2-py3-none-any.whl", hash = "sha256:4b4e51e00b572290d5b04a610b64b42ac6938b558b987ae94efc73b5b149c276"}, - {file = "openbb_quantitative-1.1.2.tar.gz", hash = "sha256:6d11025f060a1173df5a74be48c7501d9175a9106cfe8888a3f0ffa88d889fd8"}, + {file = "openbb_quantitative-1.1.3-py3-none-any.whl", hash = "sha256:37e8c50c52b434e3d3bc2ba162a669a72a2175e8f05609df80a87d90c68eb0ac"}, + {file = "openbb_quantitative-1.1.3.tar.gz", hash = "sha256:85111071156bc52e902d7646bf2ba92325e51e1f59e24e61df8fccf03fa2971e"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" pandas-ta = ">=0.3.14b,<0.4.0" scipy = ">=1.10.1,<2.0.0" statsmodels = ">=0.14.0,<0.15.0" [[package]] name = "openbb-regulators" -version = "1.1.2" +version = "1.1.3" description = "Markets and Agency Regulators extension for OpenBB" optional = false python-versions = ">=3.8,<3.12" files = [ - {file = "openbb_regulators-1.1.2-py3-none-any.whl", hash = "sha256:444a8fb337b11f2384bb0fe6a9819bb27821bd9fe772591129ce9e60f7b9bbbc"}, - {file = "openbb_regulators-1.1.2.tar.gz", hash = "sha256:a7ecb850e23dba44dd2f43ba01a6b8f9c84ea27927dd76fe70a0049774c5e497"}, + {file = "openbb_regulators-1.1.3-py3-none-any.whl", hash = "sha256:721ee82177995ec9c190a60a8913d5cfc8b80520bd5d00b9d9dde7bc0f925128"}, + {file = "openbb_regulators-1.1.3.tar.gz", hash = "sha256:0a229a8570dd084edcf0b1449f15bd2425f1fc6a185516ea827ead2724ad2516"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-sec" -version = "1.1.2" +version = "1.1.3" description = "SEC extension for OpenBB" optional = false python-versions = ">=3.8,<3.12" files = [ - {file = "openbb_sec-1.1.2-py3-none-any.whl", hash = "sha256:d46bea3fb3cda78197abf84d874908dac63b15f9e36a9a1320d6d54e1215561a"}, - {file = "openbb_sec-1.1.2.tar.gz", hash = "sha256:99e5727388e37682dc2f5899cead21d744e6726636d5b2f4f7f4f0c36b5a15a3"}, + {file = "openbb_sec-1.1.3-py3-none-any.whl", hash = "sha256:7262c738f9c9ec3168a47adca40ee1d50054b88f8263acc1ae4d4fd7ea4dfce6"}, + {file = "openbb_sec-1.1.3.tar.gz", hash = "sha256:2b1719ddf8b022934e2cb3d2e47e3aa0f964a135283fea60c4bf12461d00758c"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" pytest-freezegun = ">=0.4.2,<0.5.0" requests-cache = ">=1.1.0,<2.0.0" xmltodict = ">=0.13.0,<0.14.0" [[package]] name = "openbb-seeking-alpha" -version = "1.1.2" +version = "1.1.3" description = "Seeking Alpha extension for OpenBB" optional = true python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_seeking_alpha-1.1.2-py3-none-any.whl", hash = "sha256:0445fdb28fefce355bf8978075748aeb5175a2774af50e2ee5e6aad6bf622b9b"}, - {file = "openbb_seeking_alpha-1.1.2.tar.gz", hash = "sha256:f654f5d9dbd7fd80750c780dc89e1e6c1dc9d14cbcb9e744fda29e39f593d416"}, + {file = "openbb_seeking_alpha-1.1.3-py3-none-any.whl", hash = "sha256:034463502dbffb05875c59bb5cd502c8d18409c9c3e9df651df9d91f806702c0"}, + {file = "openbb_seeking_alpha-1.1.3.tar.gz", hash = "sha256:c2e6c8966568354206220283e9c8df5a28c5f1f26857597c8708a8322db69691"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-stockgrid" -version = "1.1.2" +version = "1.1.3" description = "stockgrid extension for OpenBB" optional = true python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_stockgrid-1.1.2-py3-none-any.whl", hash = "sha256:1c8d20f9194514b9563e98772cdaa04f23b15885bbf3a8b567705c202fe9fdba"}, - {file = "openbb_stockgrid-1.1.2.tar.gz", hash = "sha256:67b3dae1b4bd9d327e0af6c2b10f1fac325a490d5e4d6003c8505e3d3d4782ea"}, + {file = "openbb_stockgrid-1.1.3-py3-none-any.whl", hash = "sha256:03c9058987a5b2ac4cd98d6b8a22ed5ede077e5f3b5a532749ac771765a300e7"}, + {file = "openbb_stockgrid-1.1.3.tar.gz", hash = "sha256:58d5bfeffc30415eecd0d5513f1d8a760711c4dd192542aaff7b69d65bd55293"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" pytest-freezegun = ">=0.4.2,<0.5.0" [[package]] name = "openbb-technical" -version = "1.1.3" +version = "1.1.4" description = "Technical Analysis extension for OpenBB" optional = true python-versions = ">=3.8,<3.12" files = [ - {file = "openbb_technical-1.1.3-py3-none-any.whl", hash = "sha256:494dfedfe888b59975325f65de2d7456497ffa1a6f1de966a312adf9013a72ae"}, - {file = "openbb_technical-1.1.3.tar.gz", hash = "sha256:d26af8a1b6fbaae276d15c62fcd8e6d895269d66ada6b01566c5bca276f4f926"}, + {file = "openbb_technical-1.1.4-py3-none-any.whl", hash = "sha256:06fcd05459ca7a03e65277b56555234a8a29fd9af782fab5e6e9facbb7a2a5af"}, + {file = "openbb_technical-1.1.4.tar.gz", hash = "sha256:9f114d92eeaf9d32de1774e2e3f5669307658a335185e2576462707a5b198e84"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" pandas-ta = ">=0.3.14b,<0.4.0" scikit-learn = ">=1.3.1,<2.0.0" scipy = ">=1.10.1,<2.0.0" @@ -1948,85 +1982,91 @@ statsmodels = ">=0.14.0,<0.15.0" [[package]] name = "openbb-tiingo" -version = "1.1.2" +version = "1.1.3" description = "Tiingo extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_tiingo-1.1.2-py3-none-any.whl", hash = "sha256:63193ce3de54733988142ff64578cdb387b4ffa0223d30e190d8e6e540a4311d"}, - {file = "openbb_tiingo-1.1.2.tar.gz", hash = "sha256:293a90fba614872a67e501ad439ff54b6dcdfaffc401086f8800ebb29ec00c8f"}, + {file = "openbb_tiingo-1.1.3-py3-none-any.whl", hash = "sha256:9c748477b17464259acb33a197f2075fbe388025c69ef913eac5002907d77a78"}, + {file = "openbb_tiingo-1.1.3.tar.gz", hash = "sha256:dd79e05b0e56a275afd0fe6199a79942d951faa2a4d758bec83bdf4fd13221a7"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-tmx" version = "1.0.0" description = "Unofficial TMX data provider extension for the OpenBB Platform - Public Canadian markets data for Python and Fast API." optional = true -python-versions = "*" -files = [] -develop = true +python-versions = ">=3.8,<4.0" +files = [ + {file = "openbb_tmx-1.0.0-py3-none-any.whl", hash = "sha256:a1bac04e79cee87f3788e28630a8d4f73735188b683d32b01cf854777cee075e"}, + {file = "openbb_tmx-1.0.0.tar.gz", hash = "sha256:954729e1e836e11beba57073ae66efd5285621141c175dcf3be41dfd3316de34"}, +] -[package.source] -type = "directory" -url = "providers/tmx" +[package.dependencies] +aiohttp-client-cache = ">=0.10.0,<0.11.0" +aiosqlite = ">=0.19.0,<0.20.0" +exchange-calendars = ">=4.2.8,<5.0.0" +openbb-core = ">=1.1.3,<2.0.0" +random-user-agent = ">=1.0.1,<2.0.0" [[package]] name = "openbb-tradier" version = "1.0.0" description = "Tradier Provider Extension for the OpenBB Platform" optional = true -python-versions = "*" -files = [] -develop = true +python-versions = ">=3.8,<4.0" +files = [ + {file = "openbb_tradier-1.0.0-py3-none-any.whl", hash = "sha256:21b87b4a0e2dad8f04b12b094c8c05bb25c80e280bc76a1ed42fad780313b398"}, + {file = "openbb_tradier-1.0.0.tar.gz", hash = "sha256:025d12e004122737beafd74a4cc740722cd34e0c811ab3454982329d67263ccd"}, +] -[package.source] -type = "directory" -url = "providers/tradier" +[package.dependencies] +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-tradingeconomics" -version = "1.1.2" +version = "1.1.3" description = "Trading Economics extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_tradingeconomics-1.1.2-py3-none-any.whl", hash = "sha256:46daad8c6878ec2608fe18fc88588093ae18822102726aa8e149c51d7d0e4ff6"}, - {file = "openbb_tradingeconomics-1.1.2.tar.gz", hash = "sha256:37bf6bcf7d7236854ca2c68443b55118801fd1143951c553f4087cb027351f1a"}, + {file = "openbb_tradingeconomics-1.1.3-py3-none-any.whl", hash = "sha256:1e71e67e347ebf575b3f7ef2c5d58ddab3cd190d10a496c70daa15a5354c5e4f"}, + {file = "openbb_tradingeconomics-1.1.3.tar.gz", hash = "sha256:9bd5b7f8375980025179c650ec98ddd0660124f6e339637a4f2c31a27a801f90"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-wsj" -version = "1.1.2" +version = "1.1.3" description = "wsj extension for OpenBB" optional = true python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_wsj-1.1.2-py3-none-any.whl", hash = "sha256:a4ecd2205c4228984002a7a3dfd4e4e8737c97f2c16320607ced3df452ad6610"}, - {file = "openbb_wsj-1.1.2.tar.gz", hash = "sha256:baec22cab7b2316b29b882e60afd002181d6df25648f7ae4a54cfc3e0afe5bce"}, + {file = "openbb_wsj-1.1.3-py3-none-any.whl", hash = "sha256:35dbaa154fa1cf6e815f68728db9c9d9939bf52c74f082d5bda778b96eeb380c"}, + {file = "openbb_wsj-1.1.3.tar.gz", hash = "sha256:e5f1ef0ad71e665eb946a102790a87c74a008f766c6a39bd379872a614c887e3"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" [[package]] name = "openbb-yfinance" -version = "1.1.2" +version = "1.1.3" description = "yfinance extension for OpenBB" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_yfinance-1.1.2-py3-none-any.whl", hash = "sha256:ed3e5c50e0eff3b56aa7a620357786a7b57e0419843d68eb6b98493faba0230b"}, - {file = "openbb_yfinance-1.1.2.tar.gz", hash = "sha256:8861747bbbe02adcab7f7478af40d0d6542d5c2727991598e762a22a96613a2b"}, + {file = "openbb_yfinance-1.1.3-py3-none-any.whl", hash = "sha256:8eacc27dda01ceaae9bc67142e32855936b30174d772193a81984023eaccce97"}, + {file = "openbb_yfinance-1.1.3.tar.gz", hash = "sha256:2dc0f86372d5adbc0c083967c9891959ec77d9fd458237a858793e0034b002a0"}, ] [package.dependencies] -openbb-core = ">=1.1.2,<2.0.0" +openbb-core = ">=1.1.3,<2.0.0" yfinance = ">=0.2.27,<0.3.0" [[package]] @@ -2076,8 +2116,8 @@ files = [ [package.dependencies] numpy = [ - {version = ">=1.20.3", markers = "python_version < \"3.10\""}, {version = ">=1.21.0", markers = "python_version >= \"3.10\" and python_version < \"3.11\""}, + {version = ">=1.20.3", markers = "python_version < \"3.10\""}, {version = ">=1.23.2", markers = "python_version >= \"3.11\""}, ] python-dateutil = ">=2.8.2" @@ -2467,6 +2507,21 @@ scipy = ">=1.0.0" docs = ["astunparse", "docutils (==0.17)", "ipython", "jinja2 (>=2.11,<3.0)", "nbsphinx (==0.5.0)", "sphinx (==2.0.0)", "sphinx-rtd-theme (==0.4.3)"] tests = ["pytest", "pytest-xdist"] +[[package]] +name = "pyluach" +version = "2.2.0" +description = "A Python package for dealing with Hebrew (Jewish) calendar dates." +optional = true +python-versions = ">=3.7" +files = [ + {file = "pyluach-2.2.0-py3-none-any.whl", hash = "sha256:d1eb49d6292087e9290f4661ae01b60c8c933704ec8c9cef82673b349ff96adf"}, + {file = "pyluach-2.2.0.tar.gz", hash = "sha256:9063a25387cd7624276fd0656508bada08aa8a6f22e8db352844cd858e69012b"}, +] + +[package.extras] +doc = ["sphinx (>=6.1.3,<6.2.0)", "sphinx_rtd_theme (>=1.2.0,<1.3.0)"] +test = ["beautifulsoup4", "flake8", "pytest", "pytest-cov"] + [[package]] name = "pytest" version = "8.1.1" @@ -3157,8 +3212,8 @@ files = [ [package.dependencies] numpy = [ - {version = ">=1.18,<2", markers = "python_version != \"3.10\" or platform_system != \"Windows\" or platform_python_implementation == \"PyPy\""}, {version = ">=1.22.3,<2", markers = "python_version == \"3.10\" and platform_system == \"Windows\" and platform_python_implementation != \"PyPy\""}, + {version = ">=1.18,<2", markers = "python_version != \"3.10\" or platform_system != \"Windows\" or platform_python_implementation == \"PyPy\""}, ] packaging = ">=21.3" pandas = ">=1.0,<2.1.0 || >2.1.0" @@ -3240,6 +3295,17 @@ files = [ {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, ] +[[package]] +name = "toolz" +version = "0.12.1" +description = "List processing tools and functional utilities" +optional = true +python-versions = ">=3.7" +files = [ + {file = "toolz-0.12.1-py3-none-any.whl", hash = "sha256:d22731364c07d72eea0a0ad45bafb2c2937ab6fd38a3507bf55eae8744aa7d85"}, + {file = "toolz-0.12.1.tar.gz", hash = "sha256:ecca342664893f177a13dac0e6b41cbd8ac25a358e5f215316d43e2100224f4d"}, +] + [[package]] name = "traitlets" version = "5.14.1" @@ -3742,4 +3808,4 @@ wsj = ["openbb-wsj"] [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.12" -content-hash = "2d56f3ae995c9b4237a8e7fb6dfd172c5947c0d1ce67b85acb34b98efac2fe29" +content-hash = "1ff49fc42723e8a122ed5df273eaf3d8eb70bfb405735a1507075f67e31685fe" diff --git a/openbb_platform/providers/alpha_vantage/poetry.lock b/openbb_platform/providers/alpha_vantage/poetry.lock index 6e22cb3c9de3..35758358bcee 100644 --- a/openbb_platform/providers/alpha_vantage/poetry.lock +++ b/openbb_platform/providers/alpha_vantage/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -697,13 +697,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1416,4 +1416,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/providers/alpha_vantage/pyproject.toml b/openbb_platform/providers/alpha_vantage/pyproject.toml index c5f56b9e7a9e..ecbf9538d3ec 100644 --- a/openbb_platform/providers/alpha_vantage/pyproject.toml +++ b/openbb_platform/providers/alpha_vantage/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-alpha-vantage" -version = "1.1.2" +version = "1.1.3" description = "Alpha Vantage extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_alpha_vantage" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/benzinga/poetry.lock b/openbb_platform/providers/benzinga/poetry.lock index 6e22cb3c9de3..35758358bcee 100644 --- a/openbb_platform/providers/benzinga/poetry.lock +++ b/openbb_platform/providers/benzinga/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -697,13 +697,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1416,4 +1416,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/providers/benzinga/pyproject.toml b/openbb_platform/providers/benzinga/pyproject.toml index 60754c72ed82..c860066290ec 100644 --- a/openbb_platform/providers/benzinga/pyproject.toml +++ b/openbb_platform/providers/benzinga/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-benzinga" -version = "1.1.2" +version = "1.1.3" description = "Benzinga extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_benzinga" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/biztoc/poetry.lock b/openbb_platform/providers/biztoc/poetry.lock index b518b22af610..d0495cdfc24f 100644 --- a/openbb_platform/providers/biztoc/poetry.lock +++ b/openbb_platform/providers/biztoc/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -696,13 +696,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1474,4 +1474,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "c12087f6c436bc78975643a8f409147df870e3174173cc19a598d6881fb572b9" +content-hash = "2402908fdecc42c2d6cdbc1a93ff16dace7b3cadff8a0eb99c58bc873d912047" diff --git a/openbb_platform/providers/biztoc/pyproject.toml b/openbb_platform/providers/biztoc/pyproject.toml index 633a4b2b8656..e7285a14b0d4 100644 --- a/openbb_platform/providers/biztoc/pyproject.toml +++ b/openbb_platform/providers/biztoc/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-biztoc" -version = "1.1.2" +version = "1.1.3" description = "" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_biztoc" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" requests-cache = "^1.1.0" [build-system] diff --git a/openbb_platform/providers/cboe/poetry.lock b/openbb_platform/providers/cboe/poetry.lock index 0c5eb015307c..81505e4c1355 100644 --- a/openbb_platform/providers/cboe/poetry.lock +++ b/openbb_platform/providers/cboe/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -751,13 +751,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1484,4 +1484,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "00254cd0f5d93b9fae9327b4ca5998a4e3f6832b13229547a992bc4e016b55c6" +content-hash = "cbe64d0a1a80297c6a6c3e6c4c159c0b87d339494f4e96a54dab2478bc93149d" diff --git a/openbb_platform/providers/cboe/pyproject.toml b/openbb_platform/providers/cboe/pyproject.toml index c31b55e92f32..6e11194a57c2 100644 --- a/openbb_platform/providers/cboe/pyproject.toml +++ b/openbb_platform/providers/cboe/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-cboe" -version = "1.1.2" +version = "1.1.3" description = "CBOE extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -10,7 +10,7 @@ packages = [{ include = "openbb_cboe" }] python = "^3.8" aiohttp-client-cache = "^0.10.0" aiosqlite = "^0.19.0" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/ecb/poetry.lock b/openbb_platform/providers/ecb/poetry.lock index ca2770ab6c28..1253067e7957 100644 --- a/openbb_platform/providers/ecb/poetry.lock +++ b/openbb_platform/providers/ecb/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -682,13 +682,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1412,4 +1412,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "34cd8e7d939bb04eb6554282462106de61c37daaf72860848851b6f4b16b3528" +content-hash = "d243b21f94bb28407033e8e746b76d187505e87c081d191752761b2d094e663e" diff --git a/openbb_platform/providers/ecb/pyproject.toml b/openbb_platform/providers/ecb/pyproject.toml index 1a08fd8ae9db..4cda52a606bd 100644 --- a/openbb_platform/providers/ecb/pyproject.toml +++ b/openbb_platform/providers/ecb/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-ecb" -version = "1.1.2" +version = "1.1.3" description = "ECB extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_ecb" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" xmltodict = "^0.13.0" [build-system] diff --git a/openbb_platform/providers/federal_reserve/poetry.lock b/openbb_platform/providers/federal_reserve/poetry.lock index 96911e4838c4..42db20106ba8 100644 --- a/openbb_platform/providers/federal_reserve/poetry.lock +++ b/openbb_platform/providers/federal_reserve/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -682,13 +682,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1401,4 +1401,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/providers/federal_reserve/pyproject.toml b/openbb_platform/providers/federal_reserve/pyproject.toml index 891dae17a10d..0c915b70bb32 100644 --- a/openbb_platform/providers/federal_reserve/pyproject.toml +++ b/openbb_platform/providers/federal_reserve/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-federal-reserve" -version = "1.1.2" +version = "1.1.3" description = "US Federal Reserve Data Extension for OpenBB" authors = ["OpenBB "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_federal_reserve" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/finra/poetry.lock b/openbb_platform/providers/finra/poetry.lock index 310e366ef14a..8926a7cc9906 100644 --- a/openbb_platform/providers/finra/poetry.lock +++ b/openbb_platform/providers/finra/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -671,13 +671,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1390,4 +1390,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/providers/finra/pyproject.toml b/openbb_platform/providers/finra/pyproject.toml index fefdd1c35cd4..8de1ca214fc7 100644 --- a/openbb_platform/providers/finra/pyproject.toml +++ b/openbb_platform/providers/finra/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-finra" -version = "1.1.2" +version = "1.1.3" description = "FINRA extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_finra" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/finviz/poetry.lock b/openbb_platform/providers/finviz/poetry.lock index d46f64e425a9..fa1c69969856 100644 --- a/openbb_platform/providers/finviz/poetry.lock +++ b/openbb_platform/providers/finviz/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -860,13 +860,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1659,4 +1659,4 @@ testing = ["coverage (>=5.0.3)", "zope.event", "zope.testing"] [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "06e1eabfd578d4c216b6d7ca1aaa3c6904b84156b64d79598093e806c7c7f55b" +content-hash = "8d4c7979c71ea1d31e79ce48bf0ee73fbbbd38154a726f0ad447f3e669662329" diff --git a/openbb_platform/providers/finviz/pyproject.toml b/openbb_platform/providers/finviz/pyproject.toml index 45d0ac320e12..5aac0d0b824d 100644 --- a/openbb_platform/providers/finviz/pyproject.toml +++ b/openbb_platform/providers/finviz/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-finviz" -version = "1.0.1" +version = "1.0.2" description = "Finviz extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_finviz" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" finvizfinance = "0.14.7" diff --git a/openbb_platform/providers/fmp/poetry.lock b/openbb_platform/providers/fmp/poetry.lock index 6e22cb3c9de3..35758358bcee 100644 --- a/openbb_platform/providers/fmp/poetry.lock +++ b/openbb_platform/providers/fmp/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -697,13 +697,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1416,4 +1416,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/providers/fmp/pyproject.toml b/openbb_platform/providers/fmp/pyproject.toml index e4f5828168e0..708662ad4184 100644 --- a/openbb_platform/providers/fmp/pyproject.toml +++ b/openbb_platform/providers/fmp/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-fmp" -version = "1.1.2" +version = "1.1.3" description = "FMP extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_fmp" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/fred/poetry.lock b/openbb_platform/providers/fred/poetry.lock index 6e22cb3c9de3..35758358bcee 100644 --- a/openbb_platform/providers/fred/poetry.lock +++ b/openbb_platform/providers/fred/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -697,13 +697,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1416,4 +1416,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/providers/fred/pyproject.toml b/openbb_platform/providers/fred/pyproject.toml index 4f2ad4e6eb92..7de5c21f7e7b 100644 --- a/openbb_platform/providers/fred/pyproject.toml +++ b/openbb_platform/providers/fred/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-fred" -version = "1.1.2" +version = "1.1.3" description = "FRED extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_fred" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/government_us/poetry.lock b/openbb_platform/providers/government_us/poetry.lock index 90d0922d47d3..b0db6c4bcbfd 100644 --- a/openbb_platform/providers/government_us/poetry.lock +++ b/openbb_platform/providers/government_us/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -682,13 +682,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1412,4 +1412,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "a5f7b89be5359a3f42f94b66c3510ce30a788864283ef0e8c9c6b1c3b8752a8a" +content-hash = "ab041be7055ea94ef1c35bbf1c51b053b181d3c509deef8b081a2dd3b9092251" diff --git a/openbb_platform/providers/government_us/pyproject.toml b/openbb_platform/providers/government_us/pyproject.toml index e9dd02fb402a..f44641de6f59 100644 --- a/openbb_platform/providers/government_us/pyproject.toml +++ b/openbb_platform/providers/government_us/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-government-us" -version = "1.1.2" +version = "1.1.3" description = "US Government Data Extension for OpenBB" authors = ["OpenBB "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_government_us" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" random-user-agent = "^1.0.1" [build-system] diff --git a/openbb_platform/providers/intrinio/poetry.lock b/openbb_platform/providers/intrinio/poetry.lock index 18c00cb753c1..ebbc339a3dae 100644 --- a/openbb_platform/providers/intrinio/poetry.lock +++ b/openbb_platform/providers/intrinio/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -722,13 +722,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1500,4 +1500,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "c12087f6c436bc78975643a8f409147df870e3174173cc19a598d6881fb572b9" +content-hash = "2402908fdecc42c2d6cdbc1a93ff16dace7b3cadff8a0eb99c58bc873d912047" diff --git a/openbb_platform/providers/intrinio/pyproject.toml b/openbb_platform/providers/intrinio/pyproject.toml index 83a140cccc78..510e813366fb 100644 --- a/openbb_platform/providers/intrinio/pyproject.toml +++ b/openbb_platform/providers/intrinio/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-intrinio" -version = "1.1.2" +version = "1.1.3" description = "Intrinio extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -9,7 +9,7 @@ packages = [{ include = "openbb_intrinio" }] [tool.poetry.dependencies] python = "^3.8" requests-cache = "^1.1.0" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/nasdaq/poetry.lock b/openbb_platform/providers/nasdaq/poetry.lock index fceefe128cb9..db41a7736769 100644 --- a/openbb_platform/providers/nasdaq/poetry.lock +++ b/openbb_platform/providers/nasdaq/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -679,13 +679,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1409,4 +1409,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "d1d47888fa9282738450d2195b2ee92c8180596e31b8ce14ca9d6634ecf6e121" +content-hash = "25d29af7874a721fc7df45b80456e518a32bd59012410bc13f482a60aa50226e" diff --git a/openbb_platform/providers/nasdaq/pyproject.toml b/openbb_platform/providers/nasdaq/pyproject.toml index 951fa714ae72..1da80048ec95 100644 --- a/openbb_platform/providers/nasdaq/pyproject.toml +++ b/openbb_platform/providers/nasdaq/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-nasdaq" -version = "1.1.3" +version = "1.1.4" description = "Nasdaq extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_nasdaq" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" random-user-agent = "^1.0.1" nasdaq-data-link = "^1.0.4" diff --git a/openbb_platform/providers/oecd/poetry.lock b/openbb_platform/providers/oecd/poetry.lock index c6250d658c7f..3c2418fd4a1d 100644 --- a/openbb_platform/providers/oecd/poetry.lock +++ b/openbb_platform/providers/oecd/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -648,13 +648,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1367,4 +1367,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "2781df63d935590f763f01aefa378c802ba420b41ec6aa7d90736cee255d5bc7" +content-hash = "b56feb2c1eae3ebe61ba25a2adc7c2c54defbbcc8014a0d8bf0ce5850b855579" diff --git a/openbb_platform/providers/oecd/pyproject.toml b/openbb_platform/providers/oecd/pyproject.toml index 9c04e7c6b547..7a0983cc242a 100644 --- a/openbb_platform/providers/oecd/pyproject.toml +++ b/openbb_platform/providers/oecd/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-oecd" -version = "1.1.2" +version = "1.1.3" description = "OECD extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_oecd" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" urllib3 = ">1.26.16" defusedxml = "^0.8.0rc2" diff --git a/openbb_platform/providers/polygon/poetry.lock b/openbb_platform/providers/polygon/poetry.lock index 6e22cb3c9de3..35758358bcee 100644 --- a/openbb_platform/providers/polygon/poetry.lock +++ b/openbb_platform/providers/polygon/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -697,13 +697,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1416,4 +1416,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/providers/polygon/pyproject.toml b/openbb_platform/providers/polygon/pyproject.toml index 3f5b05a90d43..290befb36a32 100644 --- a/openbb_platform/providers/polygon/pyproject.toml +++ b/openbb_platform/providers/polygon/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-polygon" -version = "1.1.2" +version = "1.1.3" description = "Polygon extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_polygon" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/sec/openbb_sec/models/company_filings.py b/openbb_platform/providers/sec/openbb_sec/models/company_filings.py index fc0b5486a589..1108ad19419d 100644 --- a/openbb_platform/providers/sec/openbb_sec/models/company_filings.py +++ b/openbb_platform/providers/sec/openbb_sec/models/company_filings.py @@ -1,5 +1,6 @@ """SEC Company Filings Model.""" +# pylint: skip-file from datetime import ( date as dateType, datetime, diff --git a/openbb_platform/providers/sec/openbb_sec/utils/helpers.py b/openbb_platform/providers/sec/openbb_sec/utils/helpers.py index 527baca5433a..1b150ddd95be 100644 --- a/openbb_platform/providers/sec/openbb_sec/utils/helpers.py +++ b/openbb_platform/providers/sec/openbb_sec/utils/helpers.py @@ -1,5 +1,6 @@ """SEC Helpers module""" +# pylint: skip-file from datetime import timedelta from io import BytesIO from typing import Dict, List, Optional diff --git a/openbb_platform/providers/sec/poetry.lock b/openbb_platform/providers/sec/poetry.lock index 49a6b4ebc380..8b32af9fd575 100644 --- a/openbb_platform/providers/sec/poetry.lock +++ b/openbb_platform/providers/sec/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -721,13 +721,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1584,4 +1584,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.12" -content-hash = "348e8ce28924e2011876efe4cfd406e053a6e467e92dd14d3acba6d960f513ad" +content-hash = "dd4e0b7900bf1b8e4ff02bf476cabe885e4e4f425ad73e2e4406cf3acac2ba70" diff --git a/openbb_platform/providers/sec/pyproject.toml b/openbb_platform/providers/sec/pyproject.toml index f13123002d26..bf836dfeeb09 100644 --- a/openbb_platform/providers/sec/pyproject.toml +++ b/openbb_platform/providers/sec/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-sec" -version = "1.1.2" +version = "1.1.3" description = "SEC extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_sec" }] [tool.poetry.dependencies] python = ">=3.8,<3.12" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" requests-cache = "^1.1.0" xmltodict = "^0.13.0" pytest-freezegun = "^0.4.2" diff --git a/openbb_platform/providers/seeking_alpha/poetry.lock b/openbb_platform/providers/seeking_alpha/poetry.lock index e05f792c9c82..66e3fcdd2dd8 100644 --- a/openbb_platform/providers/seeking_alpha/poetry.lock +++ b/openbb_platform/providers/seeking_alpha/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -712,13 +712,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1431,4 +1431,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/providers/seeking_alpha/pyproject.toml b/openbb_platform/providers/seeking_alpha/pyproject.toml index e3290a715db7..a0bb2c2ba29c 100644 --- a/openbb_platform/providers/seeking_alpha/pyproject.toml +++ b/openbb_platform/providers/seeking_alpha/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-seeking-alpha" -version = "1.1.2" +version = "1.1.3" description = "Seeking Alpha extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_seeking_alpha" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/stockgrid/poetry.lock b/openbb_platform/providers/stockgrid/poetry.lock index cf14c3bc395d..b45fd17ca230 100644 --- a/openbb_platform/providers/stockgrid/poetry.lock +++ b/openbb_platform/providers/stockgrid/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -696,13 +696,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1489,4 +1489,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "0224c1c9e960016fd2026a41657ffc1e861549cd0c4b4386129b796471879c98" +content-hash = "d0f48f828c663df2443ccccfa70e9bc7c989bd156878d193cb0b700204ba0791" diff --git a/openbb_platform/providers/stockgrid/pyproject.toml b/openbb_platform/providers/stockgrid/pyproject.toml index ffe4c547bb66..df83b57e8e94 100644 --- a/openbb_platform/providers/stockgrid/pyproject.toml +++ b/openbb_platform/providers/stockgrid/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-stockgrid" -version = "1.1.2" +version = "1.1.3" description = "stockgrid extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_stockgrid" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" pytest-freezegun = "^0.4.2" [build-system] diff --git a/openbb_platform/providers/tiingo/poetry.lock b/openbb_platform/providers/tiingo/poetry.lock index 8ea7f9bf4c97..1fdfad63b6b9 100644 --- a/openbb_platform/providers/tiingo/poetry.lock +++ b/openbb_platform/providers/tiingo/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -682,13 +682,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1401,4 +1401,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/providers/tiingo/pyproject.toml b/openbb_platform/providers/tiingo/pyproject.toml index 857027eae711..3a598815a1fb 100644 --- a/openbb_platform/providers/tiingo/pyproject.toml +++ b/openbb_platform/providers/tiingo/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-tiingo" -version = "1.1.2" +version = "1.1.3" description = "Tiingo extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_tiingo" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/tmx/poetry.lock b/openbb_platform/providers/tmx/poetry.lock index f5aa7bd2e1f6..54adb1c7b2b0 100644 --- a/openbb_platform/providers/tmx/poetry.lock +++ b/openbb_platform/providers/tmx/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -754,60 +754,15 @@ files = [ {file = "numpy-1.24.4.tar.gz", hash = "sha256:80f5e3a4e498641401868df4208b74581206afbee7cf7b8329daae82676d9463"}, ] -[[package]] -name = "numpy" -version = "1.26.4" -description = "Fundamental package for array computing in Python" -optional = false -python-versions = ">=3.9" -files = [ - {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, - {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, - {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"}, - {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"}, - {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"}, - {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"}, - {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"}, - {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"}, - {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"}, - {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"}, - {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"}, - {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"}, - {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"}, - {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"}, - {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"}, - {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"}, - {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"}, - {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"}, - {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"}, - {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"}, - {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"}, - {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"}, - {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"}, - {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"}, - {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"}, - {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"}, - {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"}, - {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"}, - {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"}, - {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"}, - {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"}, - {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"}, - {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"}, - {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"}, - {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"}, - {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"}, -] - [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -864,8 +819,8 @@ files = [ [package.dependencies] numpy = [ {version = ">=1.20.3", markers = "python_version < \"3.10\""}, - {version = ">=1.21.0", markers = "python_version >= \"3.10\" and python_version < \"3.11\""}, {version = ">=1.23.2", markers = "python_version >= \"3.11\""}, + {version = ">=1.21.0", markers = "python_version >= \"3.10\" and python_version < \"3.11\""}, ] python-dateutil = ">=2.8.2" pytz = ">=2020.1" @@ -1546,4 +1501,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "a635b601436d511d38ffafed62627635bff2c8cf7ff3a93e05e5ccaec3adf4e6" +content-hash = "88b8bb955a6ec7711496c10694efb9f327606af1486256fa281cae167dbf5724" diff --git a/openbb_platform/providers/tmx/pyproject.toml b/openbb_platform/providers/tmx/pyproject.toml index bb09185b99e0..be8a3caf9ad9 100644 --- a/openbb_platform/providers/tmx/pyproject.toml +++ b/openbb_platform/providers/tmx/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-tmx" -version = "1.0.0b" +version = "1.0.0" description = "Unofficial TMX data provider extension for the OpenBB Platform - Public Canadian markets data for Python and Fast API." authors = ["OpenBB "] readme = "README.md" @@ -12,7 +12,7 @@ aiohttp-client-cache = "^0.10.0" aiosqlite = "^0.19.0" random-user-agent = "^1.0.1" exchange-calendars = "^4.2.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/tradier/poetry.lock b/openbb_platform/providers/tradier/poetry.lock index 29b1af9bc534..dd1a68541c28 100644 --- a/openbb_platform/providers/tradier/poetry.lock +++ b/openbb_platform/providers/tradier/poetry.lock @@ -715,13 +715,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1409,4 +1409,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/providers/tradier/pyproject.toml b/openbb_platform/providers/tradier/pyproject.toml index 2c052e914305..6049db28ba75 100644 --- a/openbb_platform/providers/tradier/pyproject.toml +++ b/openbb_platform/providers/tradier/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-tradier" -version = "1.0.0b" +version = "1.0.0" description = "Tradier Provider Extension for the OpenBB Platform" authors = ["OpenBB "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_tradier" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/tradingeconomics/poetry.lock b/openbb_platform/providers/tradingeconomics/poetry.lock index 69e35cf7dcbd..40f4325d5db9 100644 --- a/openbb_platform/providers/tradingeconomics/poetry.lock +++ b/openbb_platform/providers/tradingeconomics/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -671,13 +671,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1390,4 +1390,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/providers/tradingeconomics/pyproject.toml b/openbb_platform/providers/tradingeconomics/pyproject.toml index 06bdcce3cb60..11d60c38e965 100644 --- a/openbb_platform/providers/tradingeconomics/pyproject.toml +++ b/openbb_platform/providers/tradingeconomics/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-tradingeconomics" -version = "1.1.2" +version = "1.1.3" description = "Trading Economics extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_tradingeconomics" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/wsj/poetry.lock b/openbb_platform/providers/wsj/poetry.lock index e05f792c9c82..66e3fcdd2dd8 100644 --- a/openbb_platform/providers/wsj/poetry.lock +++ b/openbb_platform/providers/wsj/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -712,13 +712,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1431,4 +1431,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "86b42fce1a3a291a85111aafc8b2ce191ae4200114da2d28ed4d272ebf1a8423" +content-hash = "d0104afe6c757e94929effd4d73278942dd40fd08b65fc5c32e7773c31712748" diff --git a/openbb_platform/providers/wsj/pyproject.toml b/openbb_platform/providers/wsj/pyproject.toml index be9ede1cfd23..70fb211c5b29 100644 --- a/openbb_platform/providers/wsj/pyproject.toml +++ b/openbb_platform/providers/wsj/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-wsj" -version = "1.1.2" +version = "1.1.3" description = "wsj extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{ include = "openbb_wsj" }] [tool.poetry.dependencies] python = "^3.8" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/providers/yfinance/poetry.lock b/openbb_platform/providers/yfinance/poetry.lock index 8009de82487f..eb691777d0f9 100644 --- a/openbb_platform/providers/yfinance/poetry.lock +++ b/openbb_platform/providers/yfinance/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -815,13 +815,13 @@ files = [ [[package]] name = "openbb-core" -version = "1.1.2" +version = "1.1.3" description = "OpenBB package with core functionality" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "openbb_core-1.1.2-py3-none-any.whl", hash = "sha256:462419f771f0600db6b28307836e96280832c35587976dfc4c63987d7bc956e4"}, - {file = "openbb_core-1.1.2.tar.gz", hash = "sha256:a8a25f0ee6f114921e96fbe96a7a0a31f8900d9e146f020bcd460122a16ba9e2"}, + {file = "openbb_core-1.1.3-py3-none-any.whl", hash = "sha256:c0ad296d7bf59c751059c835c3deb38555ee9992d94da6d39d1343566e10b76a"}, + {file = "openbb_core-1.1.3.tar.gz", hash = "sha256:39a88a3c3695f7def3e5636eb0cb0bdd7ea805b4833e8f0bd7c8ecc7fb4b6f02"}, ] [package.dependencies] @@ -1568,4 +1568,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "0e3ceb5ecd6431821bca3e10333499102a7ab6f1d0974f877c5806971b3be65c" +content-hash = "923981e18dcf9b53d037be625248a7c8d6b676e74d7a38c88dc0b89089ee637f" diff --git a/openbb_platform/providers/yfinance/pyproject.toml b/openbb_platform/providers/yfinance/pyproject.toml index f3f85507203e..55cfee21c52f 100644 --- a/openbb_platform/providers/yfinance/pyproject.toml +++ b/openbb_platform/providers/yfinance/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb-yfinance" -version = "1.1.2" +version = "1.1.3" description = "yfinance extension for OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -9,7 +9,7 @@ packages = [{ include = "openbb_yfinance" }] [tool.poetry.dependencies] python = "^3.8" yfinance = "^0.2.27" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" [build-system] requires = ["poetry-core"] diff --git a/openbb_platform/pyproject.toml b/openbb_platform/pyproject.toml index af4ec64b10a5..17d2c2d10724 100644 --- a/openbb_platform/pyproject.toml +++ b/openbb_platform/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb" -version = "4.1.4" +version = "4.1.5" description = "OpenBB" authors = ["OpenBB Team "] readme = "README.md" @@ -8,51 +8,51 @@ packages = [{ include = "openbb" }] [tool.poetry.dependencies] python = ">=3.8,<3.12" -openbb-core = "^1.1.2" +openbb-core = "^1.1.3" -openbb-benzinga = "^1.1.2" -openbb-federal-reserve = "^1.1.2" -openbb-fmp = "^1.1.2" -openbb-fred = "^1.1.2" -openbb-intrinio = "^1.1.2" -openbb-oecd = "^1.1.2" -openbb-polygon = "^1.1.2" -openbb-sec = "^1.1.2" -openbb-tiingo = "^1.1.2" -openbb-tradingeconomics = "^1.1.2" -openbb-yfinance = "^1.1.2" +openbb-benzinga = "^1.1.3" +openbb-federal-reserve = "^1.1.3" +openbb-fmp = "^1.1.3" +openbb-fred = "^1.1.3" +openbb-intrinio = "^1.1.3" +openbb-oecd = "^1.1.3" +openbb-polygon = "^1.1.3" +openbb-sec = "^1.1.3" +openbb-tiingo = "^1.1.3" +openbb-tradingeconomics = "^1.1.3" +openbb-yfinance = "^1.1.3" -openbb-commodity = "^1.0.0" -openbb-crypto = "^1.1.2" -openbb-currency = "^1.1.2" -openbb-derivatives = "^1.1.2" -openbb-economy = "^1.1.2" -openbb-equity = "^1.1.2" -openbb-etf = "^1.1.2" -openbb-fixedincome = "^1.1.2" -openbb-index = "^1.1.2" -openbb-news = "^1.1.2" -openbb-regulators = "^1.1.2" +openbb-commodity = "^1.0.1" +openbb-crypto = "^1.1.3" +openbb-currency = "^1.1.3" +openbb-derivatives = "^1.1.3" +openbb-economy = "^1.1.3" +openbb-equity = "^1.1.3" +openbb-etf = "^1.1.3" +openbb-fixedincome = "^1.1.3" +openbb-index = "^1.1.3" +openbb-news = "^1.1.3" +openbb-regulators = "^1.1.3" # Community dependencies -openbb-alpha-vantage = { version = "^1.1.2", optional = true } -openbb-biztoc = { version = "^1.1.2", optional = true } -openbb-cboe = { version = "^1.1.2", optional = true } -openbb-ecb = { version = "^1.1.2", optional = true } -openbb-finra = { version = "^1.1.2", optional = true } -openbb-finviz = { version = "^1.0.1", optional = true } -openbb-government-us = { version = "^1.1.2", optional = true } +openbb-alpha-vantage = { version = "^1.1.3", optional = true } +openbb-biztoc = { version = "^1.1.3", optional = true } +openbb-cboe = { version = "^1.1.3", optional = true } +openbb-ecb = { version = "^1.1.3", optional = true } +openbb-finra = { version = "^1.1.3", optional = true } +openbb-finviz = { version = "^1.0.2", optional = true } +openbb-government-us = { version = "^1.1.3", optional = true } openbb-nasdaq = { version = "^1.1.3", optional = true } -openbb-seeking-alpha = { version = "^1.1.2", optional = true } -openbb-stockgrid = { version = "^1.1.2", optional = true } -openbb-tmx = { version = "^1.0.0b", optional = true } -openbb-tradier = { version = "^1.0.0b", optional = true } -openbb-wsj = { version = "^1.1.2", optional = true } +openbb-seeking-alpha = { version = "^1.1.3", optional = true } +openbb-stockgrid = { version = "^1.1.3", optional = true } +openbb-tmx = { version = "^1.0.0", optional = true } +openbb-tradier = { version = "^1.0.0", optional = true } +openbb-wsj = { version = "^1.1.3", optional = true } -openbb-charting = { version = "^2.0.0", optional = true } -openbb-econometrics = { version = "^1.1.2", optional = true } -openbb-quantitative = { version = "^1.1.2", optional = true } -openbb-technical = { version = "^1.1.3", optional = true } +openbb-charting = { version = "^2.0.1", optional = true } +openbb-econometrics = { version = "^1.1.3", optional = true } +openbb-quantitative = { version = "^1.1.3", optional = true } +openbb-technical = { version = "^1.1.4", optional = true } [tool.poetry.extras] alpha_vantage = ["openbb-alpha-vantage"] diff --git a/openbb_terminal/cryptocurrency/nft/nftpricefloor_model.py b/openbb_terminal/cryptocurrency/nft/nftpricefloor_model.py index 7d496f886910..8d0dab2295ac 100644 --- a/openbb_terminal/cryptocurrency/nft/nftpricefloor_model.py +++ b/openbb_terminal/cryptocurrency/nft/nftpricefloor_model.py @@ -17,7 +17,7 @@ def get_collection_slugs() -> List[str]: df = get_collections() if not df.empty and "slug" in df.columns: - return df["slug"].tolist() + return df["slug"].values.tolist() return [] diff --git a/openbb_terminal/dashboards/stream/pages/Options.py b/openbb_terminal/dashboards/stream/pages/Options.py index 762693da1ffe..ec616c4f5a18 100644 --- a/openbb_terminal/dashboards/stream/pages/Options.py +++ b/openbb_terminal/dashboards/stream/pages/Options.py @@ -243,6 +243,7 @@ def get_highest_volume(df: OptionsChains) -> pd.DataFrame: index=default_symbol, key="ticker", ) + expiration_choice = None df = load_data(ticker) chains_df = df.chains if ticker == "":