diff --git a/examples/coiled/aws/README.md b/examples/coiled/aws/README.md index 44f0461a..c92f4db8 100644 --- a/examples/coiled/aws/README.md +++ b/examples/coiled/aws/README.md @@ -12,7 +12,7 @@ 3. Install a Python environment with the coiled package in it by running the following from this directory: ```shell -conda create --name cubed-coiled-aws-examples -y python=3.10 +conda create --name cubed-coiled-aws-examples -y python=3.11 conda activate cubed-coiled-aws-examples pip install 'cubed[coiled]' ``` diff --git a/examples/lithops/aws-lambda/README.md b/examples/lithops/aws-lambda/README.md index e4a8b346..7ca3ef66 100644 --- a/examples/lithops/aws-lambda/README.md +++ b/examples/lithops/aws-lambda/README.md @@ -10,7 +10,7 @@ 1. Install a Python environment with the basic package requirements: ```shell -conda create --name cubed-lithops-aws-examples -y python=3.9 +conda create --name cubed-lithops-aws-examples -y python=3.11 conda activate cubed-lithops-aws-examples pip install -r requirements.txt # use requirements file from same directory as this readme ``` diff --git a/examples/lithops/aws-lambda/cubed.yaml b/examples/lithops/aws-lambda/cubed.yaml index 741e8b82..262fddf7 100644 --- a/examples/lithops/aws-lambda/cubed.yaml +++ b/examples/lithops/aws-lambda/cubed.yaml @@ -3,5 +3,5 @@ spec: allowed_mem: "2GB" executor_name: "lithops" executor_options: - runtime: "cubed-runtime-dev" + runtime: "cubed-runtime" runtime_memory: 2000 diff --git a/examples/lithops/aws-lambda/docker/Dockerfile_aws_lambda b/examples/lithops/aws-lambda/docker/Dockerfile_aws_lambda index b3f44ad2..2d3902d0 100644 --- a/examples/lithops/aws-lambda/docker/Dockerfile_aws_lambda +++ b/examples/lithops/aws-lambda/docker/Dockerfile_aws_lambda @@ -8,10 +8,13 @@ #FROM python:3.8-slim-buster # Python 3.9 -FROM python:3.9-slim-buster +#FROM python:3.9-slim-buster # Python 3.10 -# FROM python:3.10-slim-buster +#FROM python:3.10-slim-buster + +# Python 3.11 +FROM python:3.11-slim-buster RUN apt-get update \ # Install aws-lambda-cpp build dependencies diff --git a/examples/lithops/gcf/README.md b/examples/lithops/gcf/README.md index 1ffd8910..9b8b5689 100644 --- a/examples/lithops/gcf/README.md +++ b/examples/lithops/gcf/README.md @@ -10,7 +10,7 @@ ```shell # from this directory -conda create --name cubed-lithops-gcf-examples -y python=3.9 +conda create --name cubed-lithops-gcf-examples -y python=3.11 conda activate cubed-lithops-gcf-examples pip install -r requirements.txt # use requirements file from same directory as this readme ``` diff --git a/examples/lithops/gcf/cubed.yaml b/examples/lithops/gcf/cubed.yaml index 3df3be1a..372beaaa 100644 --- a/examples/lithops/gcf/cubed.yaml +++ b/examples/lithops/gcf/cubed.yaml @@ -3,5 +3,5 @@ spec: allowed_mem: "2GB" executor_name: "lithops" executor_options: - runtime: "cubed-runtime-dev" + runtime: "cubed-runtime" runtime_memory: 2048 diff --git a/examples/modal/aws/README.md b/examples/modal/aws/README.md index 1f2000d1..f1aff6eb 100644 --- a/examples/modal/aws/README.md +++ b/examples/modal/aws/README.md @@ -14,8 +14,8 @@ 3. Install a Python environment by running the following from this directory: ```shell -conda create --name cubed-modal-examples -y python=3.9 -conda activate cubed-modal-examples +conda create --name cubed-modal-aws-examples -y python=3.11 +conda activate cubed-modal-aws-examples pip install 'cubed[modal]' export CUBED_MODAL_REQUIREMENTS_FILE=$(pwd)/requirements.txt ``` diff --git a/examples/modal/gcp/README.md b/examples/modal/gcp/README.md index af87f6b7..58aa98ac 100644 --- a/examples/modal/gcp/README.md +++ b/examples/modal/gcp/README.md @@ -14,7 +14,7 @@ 3. Install a Python environment by running the following from this directory: ```shell -conda create --name cubed-modal-gcp-examples -y python=3.9 +conda create --name cubed-modal-gcp-examples -y python=3.11 conda activate cubed-modal-gcp-examples pip install 'cubed[modal-gcp]' export CUBED_MODAL_REQUIREMENTS_FILE=$(pwd)/requirements.txt