Menu

Post image 1
Post image 2
Post image 3
1 / 3
0

Python 3.13 and 3.14 are now available - Vercel

Vercel News·Elvis Pranskevichus·4 days ago
#exTgiDss
#vercel#python#version#support#continue#using
Reading 0:00
15s threshold

Builds and Functions now support Python 3.13 and Python 3.14 alongside the previously supported Python 3.12. Projects without a specified Python version continue using Python 3.12 by default.

The default will switch to Python 3.14 in the coming months. To continue using Python 3.12, specify an upper bound in your project manifest (pyproject.toml or Pipfile) as shown in the examples below.

[project]

...

requires-python = "~=3.12.0"

Specifying Python version in pyproject.toml

[requires]

...

python_version = "3.12"

Specifying Python version in Pipfile

See the Python documentation to learn more about Python support on Vercel.

Read More