-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add snowflake integration video (#6339) * [HotFix] Fix broken URLs in docs page. (#6368) * Fix broken URLs * use full URL to other docs pages. * remove nest_asyncio.apply() * fix: sort tradingeconomics country choices * fix lint * fix: clean _callback function * assign to empty dict * feat: add licence to .toml files * fix: readmes * fix: add CLA url * release: 4.20 % dependencies * Skip deprecation test * lint * Sync with main (#6421) * add snowflake integration video (#6339) * [HotFix] Fix broken URLs in docs page. (#6368) * Fix broken URLs * use full URL to other docs pages. --------- Co-authored-by: montezdesousa <[email protected]> Co-authored-by: Danglewood <[email protected]> * pylint disable possibly-used-before-assignment * Update CLI toml --------- Co-authored-by: montezdesousa <[email protected]> Co-authored-by: Danglewood <[email protected]> Co-authored-by: Diogo Sousa <[email protected]> Co-authored-by: Theodore Aptekarev <[email protected]>
- Loading branch information
1 parent
8399043
commit cc8263a
Showing
135 changed files
with
30,871 additions
and
4,752 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
name = "openbb-cli" | ||
version = "1.0.0" | ||
description = "Investment Research for Everyone, Anywhere." | ||
license = "MIT" | ||
authors = ["OpenBB <[email protected]>"] | ||
packages = [{ include = "openbb_cli" }] | ||
license = "AGPL-3.0-only" | ||
readme = "README.md" | ||
homepage = "https://openbb.co" | ||
repository = "https://github.com/OpenBB-finance/OpenBBTerminal" | ||
|
@@ -17,7 +17,7 @@ openbb = 'openbb_cli.cli:main' | |
python = "^3.8.1,<3.12" | ||
|
||
# OpenBB dependencies | ||
openbb = { version = "^4.1.7", extras = ["all"] } | ||
openbb = { version = "^4.2.0", extras = ["all"] } | ||
|
||
# Terminal dependencies | ||
prompt-toolkit = "^3.0.16" | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
[tool.poetry] | ||
name = "openbb-core" | ||
version = "1.1.6" | ||
version = "1.2.2" | ||
description = "OpenBB package with core functionality" | ||
authors = ["OpenBB Team <[email protected]>"] | ||
license = "AGPL-3.0-only" | ||
readme = "README.md" | ||
packages = [{ include = "openbb_core" }] | ||
|
||
|
@@ -23,6 +24,7 @@ python-dotenv = "^1.0.0" | |
aiohttp = "^3.9.5" | ||
ruff = "^0.1.6" | ||
pyjwt = "^2.8.0" | ||
anyio = "^3.7.0" # TODO: Migrate to v4 | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^7.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
# Extensions | ||
|
||
In this folder you can find the extensions that were created or are supported by OpenBB. | ||
|
||
## Available Extensions | ||
|
||
See the full list of available providers in the [EXTENSIONS file](../EXTENSIONS.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.