Skip to content

Commit 84cf5c1

Browse files
committed
Merge branch 'chore/fix-python-version-redux' into develop
2 parents be91b69 + 30b032b commit 84cf5c1

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

.github/workflows/build-python.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
python3_version: ["3.10", "3.11", "3.12", "3.13"]
4848
# python3_version: ["3.13"]
4949
needs: build
50-
uses: ./.github/workflows/platform-integration-test-new.yaml
50+
uses: ./.github/workflows/platform-integration-test.yaml
5151
with:
5252
wheel: ${{ needs.build.outputs.wheel }}
5353
python_version: ${{ matrix.python3_version }}

.github/workflows/publish-test.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ jobs:
6565
6666
- name: Store version
6767
run: |
68-
uv add --dev hatchling
69-
PROJECT_VERSION=$(uv run python -c "import tomllib; print(tomllib.load(open('pyproject.toml', 'rb'))['project']['version'])")
68+
PROJECT_VERSION=$(uv version --short)
7069
echo "PROJECT_VERSION=$PROJECT_VERSION" >> $GITHUB_ENV
7170
7271
# Publish with "trusted publisher" mechanism:

.github/workflows/publish.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,7 @@ jobs:
130130
131131
- name: Store version
132132
run: |
133-
uv add --dev hatchling
134-
PROJECT_VERSION=$(uv run python -c "import tomllib; print(tomllib.load(open('pyproject.toml', 'rb'))['project']['version'])")
133+
PROJECT_VERSION=$(uv version --short)
135134
echo "PROJECT_VERSION=$PROJECT_VERSION" >> $GITHUB_ENV
136135
137136
# Publish with "trusted publisher" mechanism:

0 commit comments

Comments
 (0)