Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Pulled in UV_VENV_CLEAR env var for uv==0.10.0 break
  • Loading branch information
jamesbraza committed Feb 11, 2026
commit 2a95c17c327c2735a9e32d5674637a76dc461c7d
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
env:
UV_VENV_CLEAR: 1 # Work around https://github.com/hynek/build-and-inspect-python-package/issues/174
steps:
- uses: actions/checkout@v6
- id: build-paper-qa-pymupdf
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
if: always()
lint:
runs-on: ubuntu-latest
env:
UV_VENV_CLEAR: 1 # Work around https://github.com/hynek/build-and-inspect-python-package/issues/174
Comment on lines +33 to +34
Copy link

Copilot AI Feb 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

UV_VENV_CLEAR is currently set at the job level, which means it will also affect the later uv sync / uv run steps in this job. If the workaround is only needed for hynek/build-and-inspect-python-package, consider moving this env var to just those uses: hynek/build-and-inspect-python-package@v2 steps to avoid unintended behavior changes and extra venv churn for the rest of the lint job.

Copilot uses AI. Check for mistakes.
strategy:
matrix:
python-version: [3.11] # Our min supported Python version
Expand Down
Loading