Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
18 changes: 9 additions & 9 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.45.0"
version = "2.45.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.45.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.45.0"

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

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

[[order.group]]
id = "renku/python-dependency-manager"
Expand Down Expand Up @@ -196,7 +196,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
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