Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2026 02:38 AM
Hi @mlrichmond-mill This is how we do it.
environments:
- environment_key: serverless_env_v4
spec:
environment_version: '4'
dependencies: dist/*.whl
becasue your bundle whl gets placed into dist/*.whl. The bundle uploader syncs dist/*.whl into workspace files behind the scenes
Note: Serverless cache the last used version so it will not use latest/current all time. its better to use pinned version for serverless.
Br