You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The runner 20250209.1.0 with Ubuntu 24.04.1 (maybe others) might have problems.
First installing the build Python package into /opt/hostedtoolcache/Python/3.12.9/x64/lib/python3.12/site-packages didn’t result in /opt/hostedtoolcache/Python/3.12.9/x64/lib/python3.12/bin/python being able to import it, then bypassing that (by using uv tool install), a later step failed in the same way (the package wasn’t importable).
$ pyproject-build --installer=uv --wheel
* Creating isolated environment: venv+uv...
* Using external uv from /opt/hostedtoolcache/uv/0.6.1/x86_64/uv
* Installing packages in isolated environment:
- hatch-vcs
- hatchling
* Getting build dependencies for wheel...
* Building wheel...
Successfully built anndata2ri-1.3.3.dev22-py3-none-any.whl
$ uv pip install --system $(ls -1 dist/anndata2ri*.whl)[test]
Using Python 3.12.9 environment at: /opt/hostedtoolcache/Python/3.12.9/x64
[…]
Installed 41 packages in 98ms
+ anndata==0.11.3
+ anndata2ri==1.3.3.dev22 (from file:///home/runner/work/anndata2ri/anndata2ri/dist/anndata2ri-1.3.3.dev22-py3-none-any.whl)
[…]
$ python -c "import anndata2ri"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'anndata2ri'
The text was updated successfully, but these errors were encountered:
The runner
20250209.1.0
with Ubuntu 24.04.1 (maybe others) might have problems.First installing the
build
Python package into/opt/hostedtoolcache/Python/3.12.9/x64/lib/python3.12/site-packages
didn’t result in/opt/hostedtoolcache/Python/3.12.9/x64/lib/python3.12/bin/python
being able to import it, then bypassing that (by usinguv tool install
), a later step failed in the same way (the package wasn’t importable).The text was updated successfully, but these errors were encountered: