Skip to content

Commit 693e544

Browse files
committed
Add --prerelease=allow to GH actions so we can run with prerelease versions of Render Engine.
1 parent d88ba06 commit 693e544

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install uv
2424
uses: astral-sh/setup-uv@v5
2525
- run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
26-
- run: uv build
26+
- run: uv build --prerelease=allow
2727
- uses: pypa/gh-action-pypi-publish@release/v1
2828
with:
2929
packages-dir: ./dist

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: astral-sh/setup-uv@v5
2727
- name: Run tests
2828
run: |
29-
uv run -p ${{ matrix.python-version }} pytest
29+
uv run -p ${{ matrix.python-version }} --prerelease=allow pytest
3030
3131
test-entry-point:
3232
runs-on: ubuntu-latest
@@ -36,7 +36,7 @@ jobs:
3636
- name: Install uv
3737
uses: astral-sh/setup-uv@v5
3838
- name: Set up env
39-
run: uv sync
39+
run: uv sync --prerelease=allow
4040
- name: Install package
4141
run: source .venv/bin/activate && uv pip install .
4242
- name: Check entry point

0 commit comments

Comments
 (0)