Skip to content

Commit 90923ea

Browse files
committed
partial revert
1 parent 87a747c commit 90923ea

File tree

3 files changed

+4
-17
lines changed

3 files changed

+4
-17
lines changed

.github/workflows/build-binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
workspaces: temporalio/bridge -> target
4646
- uses: astral-sh/setup-uv@v5
47-
- run: uv sync --all-extras --python 3.13
47+
- run: uv sync --all-extras
4848

4949
# Add the source dist only for Linux x64 for now
5050
- if: ${{ matrix.package-suffix == 'linux-amd64' }}

.github/workflows/ci.yml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,7 @@ jobs:
4848
repo-token: ${{ secrets.GITHUB_TOKEN }}
4949
- uses: astral-sh/setup-uv@v5
5050
- run: uv tool install poethepoet
51-
- run: uv sync --all-extras --python ${{ matrix.python }}
52-
- name: Check python version
53-
shell: bash
54-
run: |
55-
actual=$(uv run python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
56-
if [[ "$actual" != "${{ matrix.python }}" ]]; then
57-
echo "Python version in use by uv ($actual) does not match intended version (${{ matrix.python }})"
58-
exit 1
59-
fi
60-
actual=$(python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
61-
if [[ "$actual" != "${{ matrix.python }}" ]]; then
62-
echo "Python version on PATH ($actual) does not match intended version (${{ matrix.python }})"
63-
exit 1
64-
fi
51+
- run: uv sync --all-extras
6552
- run: poe bridge-lint
6653
if: ${{ matrix.clippyLinter }}
6754
- run: poe lint
@@ -97,7 +84,7 @@ jobs:
9784
TEMPORAL_TEST_PROTO3: 1
9885
run: |
9986
uv add --python 3.9 "protobuf<4"
100-
uv sync --all-extras --python 3.9
87+
uv sync --all-extras
10188
poe build-develop
10289
poe gen-protos
10390
poe format

.github/workflows/run-bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- uses: astral-sh/setup-uv@v5
4848
# Build
4949
- run: uv tool install poethepoet
50-
- run: uv sync --all-extras --python 3.13
50+
- run: uv sync --all-extras
5151
- run: poe build-develop-with-release
5252

5353
# Run a bunch of bench tests. We run multiple times since results vary.

0 commit comments

Comments
 (0)