Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 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
7 changes: 7 additions & 0 deletions .changeset/yellow-falcons-cheat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"create-cloudflare": minor
---

Update dependencies in Python workers templates

The `workers-runtime-sdk` library is added as a dev dependency and the `webtypy` is removed from as a dependency.
Comment thread
petebacondarwin marked this conversation as resolved.
Outdated
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"webtypy>=0.1.7",
]
dependencies = []

[dependency-groups]
dev = [
"workers-py"
"workers-py",
"workers-runtime-sdk",
]
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"webtypy>=0.1.7",
]
dependencies = []

[dependency-groups]
dev = [
"workers-py"
"workers-py",
"workers-runtime-sdk",
]
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"webtypy>=0.1.7",
]
dependencies = []

[dependency-groups]
dev = [
"workers-py"
"workers-py",
"workers-runtime-sdk",
]
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["webtypy>=0.1.7"]
dependencies = []

[dependency-groups]
dev = ["workers-py"]
dev = ["workers-py", "workers-runtime-sdk"]
Loading