Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 9 additions & 13 deletions builders/selector/builder.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ description = "Builder for Renku frontends and environments."
version = "0.5.1"

[[buildpacks]]
uri = "docker://docker.io/paketobuildpacks/python:2.38.0"
version = "2.38.0"
uri = "docker://docker.io/paketobuildpacks/python:2.46.0"
version = "2.46.0"

[[buildpacks]]
uri = "docker://docker.io/paketobuildpacks/miniconda:0.11.5"
uri = "docker://docker.io/paketobuildpacks/miniconda:0.11.22"
id = "paketo-buildpacks/miniconda"
version = "0.11.5"
version = "0.11.22"

[[buildpacks]]
uri = "docker://docker.io/heroku/buildpack-deb-packages:0.2.0"
Expand All @@ -75,11 +75,11 @@ description = "Builder for Renku frontends and environments."

[[order.group]]
id = "paketo-buildpacks/miniconda"
version = "0.11.5"
version = "0.11.22"

[[order.group]]
id = "paketo-buildpacks/python"
version = "2.38.0"
version = "2.46.0"

[[order.group]]
id = "renku/python-dependency-manager"
Expand Down Expand Up @@ -121,7 +121,7 @@ description = "Builder for Renku frontends and environments."

[[order.group]]
id = "paketo-buildpacks/python"
version = "2.38.0"
version = "2.46.0"

[[order.group]]
id = "renku/python-dependency-manager"
Expand Down Expand Up @@ -159,11 +159,7 @@ description = "Builder for Renku frontends and environments."

[[order.group]]
id = "paketo-buildpacks/python"
version = "2.38.0"

[[order.group]]
id = "renku/python-dependency-manager"
version = "0.5.1"
version = "2.46.0"
Comment thread
SalimKayal marked this conversation as resolved.

[[order.group]]
id = "renku/renku-variables"
Expand Down Expand Up @@ -196,7 +192,7 @@ description = "Builder for Renku frontends and environments."

[[order.group]]
id = "paketo-buildpacks/miniconda"
version = "0.11.5"
version = "0.11.22"

[[order.group]]
id = "renku/r-conda"
Expand Down
7 changes: 7 additions & 0 deletions buildpacks/python-dependency-manager/bin/detect
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,11 @@ name = "poetry-venv"
[or.requires.metadata]
launch = true

[[or]]
[[or.requires]]
name = "uv"

[or.requires.metadata]
launch = true

EOL
1 change: 1 addition & 0 deletions samples/uv/.python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.13
6 changes: 6 additions & 0 deletions samples/uv/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
def main():
print("Hello from uv!")


if __name__ == "__main__":
main()
9 changes: 9 additions & 0 deletions samples/uv/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[project]
name = "uv-sample"
version = "0.1.0"
description = "Sample uv project"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"cowpy>=1.1.5",
]
23 changes: 23 additions & 0 deletions samples/uv/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading