Skip to content

Commit

Permalink
Merge branch 'develop' into feature/ssl-context
Browse files Browse the repository at this point in the history
  • Loading branch information
deeleeramone authored Jan 10, 2025
2 parents d7698c1 + f4bcd0d commit 060fe9e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Placeholder for the OpenBB Platform Installer package."""

__version__ = "1.0.0"
__version__ = "1.0.2"
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"] # Change this to your name and email
license = "AGPL-3.0-only" # This license must be compatible with the OpenBB license
Expand Down
1 change: 0 additions & 1 deletion build/conda/installer/construct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ channels:

condarc:
{channels: [conda-forge],
default_channels: [conda-forge],
allow_softlinks: false,
auto_activate_base: false,
always_copy: true,
Expand Down
2 changes: 1 addition & 1 deletion build/conda/installer/post_install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions build/conda/installer/post_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 060fe9e

Please sign in to comment.