Skip to content

Commit

Permalink
updating to pick up the core folder instead (platform folder was drop…
Browse files Browse the repository at this point in the history
…ed) (#5836)
  • Loading branch information
hjoaquim committed Nov 30, 2023
1 parent 2999931 commit 2931c08
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build/pypi/openbb_platform/nightly.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@

SUB_PACKAGES = {}
DEPENDENCIES: Dict[str, Any] = {}
PLUGINS = {"openbb_core_extension": {}, "openbb_provider_extension": {}}
PLUGINS: Dict[str, Dict] = {
"openbb_core_extension": {},
"openbb_provider_extension": {},
}
CMD = [sys.executable, "-m", "poetry", "build"]


Expand Down Expand Up @@ -44,7 +47,7 @@ def gather_metadata(sub_path: str):

def build():
"""Build the Platform package."""
for sub_path in ["platform", "providers", "extensions"]:
for sub_path in ["core", "providers", "extensions"]:
gather_metadata(sub_path)

# need to pop these from the dependencies
Expand Down

0 comments on commit 2931c08

Please sign in to comment.