Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bumping readme suggested python version from 3.7 to 3.12 #2125

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all 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
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,20 +109,20 @@ 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.

You can find the latest versions of python on the
`Python download page <https://www.python.org/downloads/>`_.

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``::

Expand Down