Skip to content

Commit 93dc8d6

Browse files
committed
Update GitHub Actions workflows to use 'uv run' for Python execution in version checks
1 parent 60cef5c commit 93dc8d6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish-python-sdk-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
103103
- name: Verify version format
104104
run: |
105-
python -c "
105+
uv run python -c "
106106
import sys
107107
sys.path.append('.')
108108
from exospherehost._version import version

.github/workflows/publish-python-sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979

8080
- name: Check version for beta indicator
8181
run: |
82-
python -c "
82+
uv run python -c "
8383
import sys
8484
sys.path.append('.')
8585
from exospherehost._version import version

0 commit comments

Comments
 (0)