Hey, so sam-cli supports UV by now.
It'd be nice if we could add UV as a package manager too
As far as I can tell we'd just need to create a new method here:
|
def _make_pip_command(base_path): |
|
return [ |
|
"pip", |
|
"install", |
|
"--no-cache-dir", |
|
"--no-color", |
|
"--disable-pip-version-check", |
|
"--upgrade", |
|
"--requirement", |
|
str(base_path / "requirements.txt"), |
|
"--target", |
|
str(base_path / "build"), |
|
"setuptools<82", |
|
] |
Hey, so sam-cli supports UV by now.
It'd be nice if we could add UV as a package manager too
As far as I can tell we'd just need to create a new method here:
cloudformation-cli-python-plugin/python/rpdk/python/codegen.py
Lines 313 to 326 in 9159d8b