From 527859fda5fa9ec4304446bb17632fd9c2af6772 Mon Sep 17 00:00:00 2001 From: Maksym Bendeberia Date: Wed, 4 Dec 2024 16:36:55 +0100 Subject: [PATCH] bumping readme suggested python version from 3.7 to 3.12 --- README.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 611455d38..9df3aee10 100644 --- a/README.rst +++ b/README.rst @@ -109,7 +109,7 @@ Quickstart .. quick-start-begin In this tutorial, you'll use the ``chalice`` command line utility -to create and deploy a basic REST API. This quickstart uses Python 3.7, +to create and deploy a basic REST API. This quickstart uses Python 3.12, but AWS Chalice supports all versions of python supported by AWS Lambda, which includes Python 3.7 through python 3.12. @@ -117,12 +117,12 @@ You can find the latest versions of python on the `Python download page `_. To install Chalice, we'll first create and activate a virtual environment -in python3.7:: +in python3.12:: $ python3 --version - Python 3.7.3 - $ python3 -m venv venv37 - $ . venv37/bin/activate + Python 3.12.3 + $ python3 -m venv venv312 + $ . venv312/bin/activate Next we'll install Chalice using ``pip``::