Python functions to get top-level importables names
0

Configure Feed

Select the types of activity you want to include in your feed.

Use uv

Fix gh-2.

Juan Luis Cano Rodríguez (Jul 24, 2024, 11:10 AM +0200) a1d79edb 067eb616

+2 -2
+1 -1
pyproject.toml
··· 9 9 license = {file = "LICENSE"} 10 10 description = "Python functions to get top-level importable names" 11 11 dependencies = [ 12 - "build", 12 + "build[uv]>=1.2.0", 13 13 "installer", 14 14 "pyproject_hooks", 15 15 "tomli ; python_version < '3.11'",
+1 -1
src/pygetimportables/__init__.py
··· 48 48 build_config_settings: ConfigSettingsType | None = None, 49 49 ) -> Path: 50 50 """Silently build wheel using build package.""" 51 - with DefaultIsolatedEnv() as env: 51 + with DefaultIsolatedEnv(installer="uv") as env: 52 52 builder = ProjectBuilder.from_isolated_env( 53 53 env, source_dir, runner=quiet_subprocess_runner 54 54 )