summaryrefslogtreecommitdiffstats
path: root/build/pypi/openbb_platform/publish.py
diff options
context:
space:
mode:
Diffstat (limited to 'build/pypi/openbb_platform/publish.py')
-rw-r--r--build/pypi/openbb_platform/publish.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/pypi/openbb_platform/publish.py b/build/pypi/openbb_platform/publish.py
index 3d6fb6bf83e..6d163af0860 100644
--- a/build/pypi/openbb_platform/publish.py
+++ b/build/pypi/openbb_platform/publish.py
@@ -68,7 +68,7 @@ def publish(dry_run: bool = False, core: bool = False, extensions: bool = False)
for sub_path in package_paths:
is_extension = sub_path in EXTENSION_PACKAGES
- for path in PLATFORM_PATH.rglob(f"{sub_path}/**/pyproject.toml"):
+ for path in sorted(PLATFORM_PATH.rglob(f"{sub_path}/**/pyproject.toml")):
try:
# Update dependencies
if is_extension and "devtools" not in str(path):