saurabh18cs
Honored Contributor III

Hi @mlrichmond-mill This is how we do it.

 
      environments:
        - environment_key: serverless_env_v4
          spec:
            environment_version: '4'
            dependenciesdist/*.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