Skip to content

Commit 4eeb00b

Browse files
committed
Add --prerelease=allow, add missing RUN
1 parent a9abb7b commit 4eeb00b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
run: uv sync --all-extras --group docs --prerelease=allow
7171

7272
- name: Build docs
73-
run: uv run mkdocs build
73+
run: uv run mkdocs build --prerelease=allow
7474

7575
- name: Create .nojekyll file
7676
run: touch site/.nojekyll

.github/workflows/unit_tests.yml

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

6363
- name: Install dependencies and check code
6464
run: |
65-
uv run pytest -m "not integration_test" --cov vec_inf --cov-report=xml tests
65+
uv run pytest -m "not integration_test" --cov vec_inf --cov-report=xml tests --prerelease=allow
6666
6767
- name: Install the core package only
6868
run: uv sync --no-dev

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ WORKDIR /vec-inf
5656
COPY . /vec-inf
5757

5858
# Install project dependencies with build requirements
59-
uv pip install --system -e .[dev] --prerelease=allow
59+
RUN uv pip install --system -e .[dev] --prerelease=allow
6060

6161
# Install a single, system NCCL (from NVIDIA CUDA repo in base image)
6262
RUN apt-get update && apt-get install -y --allow-change-held-packages\

0 commit comments

Comments
 (0)