Skip to content

Commit 5b86f03

Browse files
authored
Merge pull request #9081 from OpenMined/rasswanth/fix-commit-hash-experimental-releases
fix commit hash
2 parents 51d6779 + fbfb22b commit 5b86f03

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.github/workflows/cd-feature-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
108108
- name: Update Commit Hash in Syft
109109
run: |
110-
python packages/syft/src/syft/update_commit.py packages/syft/src/syft/commit.py
110+
python packages/syft/src/syft/util/update_commit.py packages/syft/src/syft/util/commit.py
111111
112112
- name: Set up Docker Buildx
113113
uses: docker/setup-buildx-action@v3
@@ -320,7 +320,7 @@ jobs:
320320
321321
- name: Update Commit Hash in Syft
322322
run: |
323-
python packages/syft/src/syft/update_commit.py packages/syft/src/syft/commit.py
323+
python packages/syft/src/syft/util/update_commit.py packages/syft/src/syft/util/commit.py
324324
325325
- name: Build Helm Chart
326326
shell: bash

packages/syft/src/syft/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
from .client.syncing import sync
2727
from .client.user_settings import UserSettings
2828
from .client.user_settings import settings
29-
from .commit import __commit__
3029
from .custom_worker.config import DockerWorkerConfig
3130
from .custom_worker.config import PrebuiltWorkerConfig
3231
from .orchestra import Orchestra as orchestra
@@ -82,6 +81,7 @@
8281
from .util import options
8382
from .util.autoreload import disable_autoreload
8483
from .util.autoreload import enable_autoreload
84+
from .util.commit import __commit__
8585
from .util.patch_ipython import patch_ipython
8686
from .util.telemetry import instrument
8787
from .util.util import autocache

0 commit comments

Comments
 (0)