summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build/docker/compose.env2
-rw-r--r--build/docker/docker-compose.yaml2
-rw-r--r--build/docker/poetry.dockerfile3
-rw-r--r--build/nsis/setup.nsi2
-rw-r--r--openbb_terminal/core/completer/choices.py2
-rw-r--r--openbb_terminal/core/library/trail_map.py2
-rw-r--r--openbb_terminal/etf/technical_analysis/ta_controller.py4
-rw-r--r--openbb_terminal/feature_flags.py2
-rw-r--r--openbb_terminal/miscellaneous/library/trail_map_optimization.csv1
-rw-r--r--openbb_terminal/reports/reports_controller.py4
-rw-r--r--pyproject.toml2
-rw-r--r--website/content/terminal/quickstart/installation.md2
12 files changed, 14 insertions, 14 deletions
diff --git a/build/docker/compose.env b/build/docker/compose.env
index af5e28eee42..90478db9d56 100644
--- a/build/docker/compose.env
+++ b/build/docker/compose.env
@@ -1,2 +1,2 @@
OPENBBTERMINAL_DOCKER_REGISTRY="ghcr.io"
-OPENBBTERMINAL_DOCKER_RELEASE_VERSION="2.0.0rc1"
+OPENBBTERMINAL_DOCKER_RELEASE_VERSION="2.0.0"
diff --git a/build/docker/docker-compose.yaml b/build/docker/docker-compose.yaml
index b731afc03ef..013d3fb1278 100644
--- a/build/docker/docker-compose.yaml
+++ b/build/docker/docker-compose.yaml
@@ -7,6 +7,6 @@ services:
- ~/OpenBBUserData:/root/OpenBBUserData
- ~/.openbb_terminal:/root/.openbb_terminal
platform: linux/amd64
- image: ghcr.io/openbb-finance/openbbterminal/poetry:2.0.0rc1
+ image: ghcr.io/openbb-finance/openbbterminal/poetry:2.0.0
stdin_open: true # docker run -i
tty: true # docker run -t \ No newline at end of file
diff --git a/build/docker/poetry.dockerfile b/build/docker/poetry.dockerfile
index 218c53079bc..e748a751cbc 100644
--- a/build/docker/poetry.dockerfile
+++ b/build/docker/poetry.dockerfile
@@ -48,7 +48,8 @@ WORKDIR $PYSETUP_PATH
# Copy poetry files
COPY pyproject.toml website/content/sdk/quickstart/installation.md poetry.lock ./
-RUN mkdir $PYSETUP_PATH/openbb_terminal
+RUN mkdir -p website/content/sdk/quickstart
+RUN mkdir openbb_terminal
RUN mv installation.md ./website/content/sdk/quickstart
RUN touch openbb_terminal/__init__.py
diff --git a/build/nsis/setup.nsi b/build/nsis/setup.nsi
index cafeb25b492..7de0bae320b 100644
--- a/build/nsis/setup.nsi
+++ b/build/nsis/setup.nsi
@@ -10,7 +10,7 @@
!define NAME "OpenBB Terminal"
!define COMPANY "OpenBB"
!define APPFILE "OpenBBTerminal.exe"
- !define VERSION "2.0.0rc1"
+ !define VERSION "2.0.0"
!define SLUG "${NAME} v${VERSION}"
;--------------------------------
diff --git a/openbb_terminal/core/completer/choices.py b/openbb_terminal/core/completer/choices.py
index 52cab850103..52bca9d0181 100644
--- a/openbb_terminal/core/completer/choices.py
+++ b/openbb_terminal/core/completer/choices.py
@@ -302,8 +302,6 @@ def _build_command_choice_map(argument_parser: ArgumentParser) -> dict:
def build_controller_choice_map(controller) -> dict:
- environ["DEBUG_MODE"] = "true"
-
command_list = controller.CHOICES_COMMANDS
controller_choice_map: dict = {c: {} for c in controller.controller_choices}
controller_choice_map["support"] = controller.SUPPORT_CHOICES
diff --git a/openbb_terminal/core/library/trail_map.py b/openbb_terminal/core/library/trail_map.py
index bf738eea78a..7d657b6988a 100644
--- a/openbb_terminal/core/library/trail_map.py
+++ b/openbb_terminal/core/library/trail_map.py
@@ -34,7 +34,7 @@ DISABLE_OPTIMIZATION_WARNING = load_env_vars(
"OPENBB_DISABLE_OPTIMIZATION_WARNING", strtobool, False
)
try:
- import riskfolio # pylint: disable=W0611 # noqa: F401
+ # import riskfolio # pylint: disable=W0611 # noqa: F401
OPTIMIZATION_TOOLKIT_ENABLED = True
except ModuleNotFoundError:
diff --git a/openbb_terminal/etf/technical_analysis/ta_controller.py b/openbb_terminal/etf/technical_analysis/ta_controller.py
index d97b0d8fbc1..db6ce32ecb3 100644
--- a/openbb_terminal/etf/technical_analysis/ta_controller.py
+++ b/openbb_terminal/etf/technical_analysis/ta_controller.py
@@ -44,7 +44,6 @@ class TechnicalAnalysisController(BaseController):
"""Technical Analysis Controller class"""
CHOICES_COMMANDS = [
- "load",
"ema",
"sma",
"wma",
@@ -66,7 +65,6 @@ class TechnicalAnalysisController(BaseController):
"adosc",
"obv",
"fib",
- "tv",
"clenow",
"demark",
"atr",
@@ -90,7 +88,7 @@ class TechnicalAnalysisController(BaseController):
self.data = data
self.interval = "1440min"
if session and obbff.USE_PROMPT_TOOLKIT:
- choices: dict = {c: {} for c in self.controller_choices}
+ choices: dict = self.choices_default
self.completer = NestedCompleter.from_nested_dict(choices)
diff --git a/openbb_terminal/feature_flags.py b/openbb_terminal/feature_flags.py
index 7131e8d8052..afb0e670fc1 100644
--- a/openbb_terminal/feature_flags.py
+++ b/openbb_terminal/feature_flags.py
@@ -147,7 +147,7 @@ try:
else:
raise Exception("Using git")
except Exception:
- version = "2.0.0rc1"
+ version = "2.0.0"
VERSION = str(os.getenv("OPENBB_VERSION", version))
# Select the terminal translation language
diff --git a/openbb_terminal/miscellaneous/library/trail_map_optimization.csv b/openbb_terminal/miscellaneous/library/trail_map_optimization.csv
index 274b4b01f79..9f647030af3 100644
--- a/openbb_terminal/miscellaneous/library/trail_map_optimization.csv
+++ b/openbb_terminal/miscellaneous/library/trail_map_optimization.csv
@@ -5,7 +5,6 @@ portfolio.po.ef,openbb_terminal.portfolio.portfolio_optimization.po_model.get_ef
portfolio.po.equal,openbb_terminal.portfolio.portfolio_optimization.po_model.get_equal,
portfolio.po.file,openbb_terminal.portfolio.portfolio_optimization.po_model.load_parameters_file,
portfolio.po.get_properties,openbb_terminal.portfolio.portfolio_optimization.optimizer_model.get_properties,
-portfolio.po.hcp,openbb_terminal.portfolio.portfolio_optimization.optimizer_model.get_hcp_portfolio,
portfolio.po.herc,openbb_terminal.portfolio.portfolio_optimization.po_model.get_herc,
portfolio.po.hrp,openbb_terminal.portfolio.portfolio_optimization.po_model.get_hrp,
portfolio.po.load,openbb_terminal.portfolio.portfolio_optimization.po_model.generate_portfolio,
diff --git a/openbb_terminal/reports/reports_controller.py b/openbb_terminal/reports/reports_controller.py
index 3883577131f..5a52d23205e 100644
--- a/openbb_terminal/reports/reports_controller.py
+++ b/openbb_terminal/reports/reports_controller.py
@@ -20,6 +20,7 @@ from openbb_terminal.decorators import log_start_end
from openbb_terminal.menu import session
from openbb_terminal.parent_classes import BaseController
from openbb_terminal.rich_config import console, MenuText
+from openbb_terminal.terminal_helper import is_packaged_application
logger = logging.getLogger(__name__)
@@ -144,6 +145,9 @@ class ReportController(BaseController):
@log_start_end(log=logger)
def call_forecast(self, other_args: List[str]):
+ if is_packaged_application():
+ console.print("This report is disabled for the installed version")
+ return
try:
import darts # pyright: reportMissingImports=false # noqa: F401, E501 #pylint: disable=import-outside-toplevel, unused-import
diff --git a/pyproject.toml b/pyproject.toml
index 3df64d38a19..2bf5627560d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "openbb"
-version = "2.0.0rc1"
+version = "2.0.0"
description = "Investment Research for Everyone, Anywhere."
license = "MIT"
authors = ["Didier Rodrigues Lopes"]
diff --git a/website/content/terminal/quickstart/installation.md b/website/content/terminal/quickstart/installation.md
index 8a6b1b694b0..b45bf66fb7a 100644
--- a/website/content/terminal/quickstart/installation.md
+++ b/website/content/terminal/quickstart/installation.md
@@ -138,7 +138,7 @@ curl -o docker-compose.yaml https://raw.githubusercontent.com/OpenBB-finance/Ope
docker compose run poetry
```
-The command line with `curl` is downloading this file : [`docker-compose.yaml`](https://raw.githubusercontent.com/OpenBB-finance/OpenBBTerminal/main/docker/docker-compose.yaml).
+The command line with `curl` is downloading this file : [`docker-compose.yaml`](https://raw.githubusercontent.com/OpenBB-finance/OpenBBTerminal/main/build/docker/docker-compose.yaml).
The `docker-compose.yaml` file is a configuration file telling `Docker Compose`: