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
6 changes: 2 additions & 4 deletions .github/workflows/build-changes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: windows-latest
timeout-minutes: 5
env:
UV_SYSTEM_PYTHON: 1 # needed because 'uv sync ...' followed by 'uv run ...' does not work...
steps:
- uses: actions/checkout@v6
- name: Set up Python
Expand All @@ -53,6 +51,6 @@ jobs:
cache-dependency-glob: |
**/pyproject.toml
- name: Install package and dependencies
run: uv pip install -e ".[dev]"
run: uv sync --extra dev
- name: Run all checks
run: python checks/pytest_.py
run: uv run python checks/pytest_.py
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies = [

[project.optional-dependencies]
dev = [
"checks-superstaq>=0.5.45",
"checks-superstaq>=0.5.62",
"jupyter>=1.1.1",
"python-lsp-server[all]>=1.14.0",
"relay-bp[stim]==0.2.1",
Expand Down