diff --git a/build/conda/installer/assets/openbb_platform_installer/openbb_platform_installer/__init__.py b/build/conda/installer/assets/openbb_platform_installer/openbb_platform_installer/__init__.py index cf160bd8ddb3..d4cda5380126 100644 --- a/build/conda/installer/assets/openbb_platform_installer/openbb_platform_installer/__init__.py +++ b/build/conda/installer/assets/openbb_platform_installer/openbb_platform_installer/__init__.py @@ -1,3 +1,3 @@ """Placeholder for the OpenBB Platform Installer package.""" -__version__ = "1.0.0" +__version__ = "1.0.2" diff --git a/build/conda/installer/assets/openbb_platform_installer/pyproject.toml b/build/conda/installer/assets/openbb_platform_installer/pyproject.toml index ced32eb0ce77..f905f44b930e 100644 --- a/build/conda/installer/assets/openbb_platform_installer/pyproject.toml +++ b/build/conda/installer/assets/openbb_platform_installer/pyproject.toml @@ -1,7 +1,7 @@ # If you will be using this as a template for your own package, please change the values accordingly. [tool.poetry] name = "openbb_platform_installer" # Change this to your package name -version = "1.0.0" # Change this to your package version +version = "1.0.2" # Change this to your package version description = "A meta package for installing the OpenBB Platform: Investment research for everyone, anywhere." # Change this to your description authors = ["OpenBB "] # Change this to your name and email license = "AGPL-3.0-only" # This license must be compatible with the OpenBB license diff --git a/build/conda/installer/construct.yaml b/build/conda/installer/construct.yaml index b591a1a67769..25ddbbee5791 100644 --- a/build/conda/installer/construct.yaml +++ b/build/conda/installer/construct.yaml @@ -32,7 +32,6 @@ channels: condarc: {channels: [conda-forge], - default_channels: [conda-forge], allow_softlinks: false, auto_activate_base: false, always_copy: true, diff --git a/build/conda/installer/post_install.bat b/build/conda/installer/post_install.bat index 0373ff0a15d7..fd54420ea584 100644 --- a/build/conda/installer/post_install.bat +++ b/build/conda/installer/post_install.bat @@ -14,7 +14,7 @@ python -m pip install -U pip >> "%LOG_FILE%" 2>&1 pip install -U setuptools >> "%LOG_FILE%" 2>&1 -pip install poetry >> "%LOG_FILE%" 2>&1 +pip install poetry==1.8.5 >> "%LOG_FILE%" 2>&1 poetry config virtualenvs.path "%PREFIX%\envs" --local >> "%LOG_FILE%" 2>&1 diff --git a/build/conda/installer/post_install.sh b/build/conda/installer/post_install.sh index 554796ab9685..c30a300bfbe8 100755 --- a/build/conda/installer/post_install.sh +++ b/build/conda/installer/post_install.sh @@ -19,6 +19,8 @@ python -m pip install -U pip >>"$LOG_FILE" 2>&1 pip install -U setuptools poetry >>"$LOG_FILE" 2>&1 +pip install poetry==1.8.5 >>"$LOG_FILE" 2>&1 + poetry config virtualenvs.path "$PREFIX/envs" --local >>"$LOG_FILE" 2>&1 poetry config virtualenvs.create false --local >>"$LOG_FILE" 2>&1