We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81cd060 commit 5df8b79Copy full SHA for 5df8b79
.github/workflows/release-wheels.yml
@@ -168,6 +168,9 @@ jobs:
168
. .venv-test\Scripts\Activate.ps1
169
uv pip install --upgrade pip
170
uv pip install "$wheel"
171
+ # Import from a clean working directory to avoid repo src shadowing
172
+ $tmp = New-Item -ItemType Directory -Path ([System.IO.Path]::GetTempPath()) -Name ("hgraph-test-" + [guid]::NewGuid())
173
+ Set-Location $tmp.FullName
174
python -c "import hgraph, hgraph._hgraph; print('ok')"
175
176
- name: Upload wheels
0 commit comments