Skip to content

Commit a1c6c88

Browse files
Add note about Python version incomps
1 parent a652d0d commit a1c6c88

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

gget/gget_setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def _install(package: str, import_name: str, verbose: bool = True):
5656
f"{package} installation with '{command}' (https://pypi.org/project/{package}) failed."
5757
)
5858
if pip_cmd == pip_cmds[-1]:
59-
logger.error(f"All installation attempts for {package} have failed.")
59+
logger.error(f"All installation attempts for {package} have failed. Note: Some dependencies (e.g., cellxgene-census) may not support the latest Python versions. If you encounter installation errors, try using an earlier Python version.")
6060
return
6161
else:
6262
if verbose:
@@ -74,7 +74,7 @@ def _install(package: str, import_name: str, verbose: bool = True):
7474
)
7575
# Retry with pip if import after uv installation failed
7676
if pip_cmd == pip_cmds[-1]:
77-
logger.error(f"All installation attempts for {package} have failed.")
77+
logger.error(f"All installation attempts for {package} have failed. Note: Some dependencies (e.g., cellxgene-census) may not support the latest Python versions. If you encounter installation errors, try using an earlier Python version.")
7878
return
7979
else:
8080
if verbose:

0 commit comments

Comments
 (0)