diff options
author | Thomas Wouters <thomas@python.org> | 2023-05-22 19:15:32 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2023-05-22 19:15:32 (GMT) |
commit | 500b0f4814e05b918f485ceebf9c7be9a52ad469 (patch) | |
tree | d53bee1faf93aa13b96498682e7e278669d45413 /Include | |
parent | 5612078f68e9688fbf3b1d8565abc79b77501000 (diff) | |
download | cpython-500b0f4814e05b918f485ceebf9c7be9a52ad469.zip cpython-500b0f4814e05b918f485ceebf9c7be9a52ad469.tar.gz cpython-500b0f4814e05b918f485ceebf9c7be9a52ad469.tar.bz2 |
Python 3.13.0a0
Diffstat (limited to 'Include')
-rw-r--r-- | Include/patchlevel.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 3de9ed9..ae9d36c 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -17,13 +17,13 @@ /* Version parsed out into numeric values */ /*--start constants--*/ #define PY_MAJOR_VERSION 3 -#define PY_MINOR_VERSION 12 +#define PY_MINOR_VERSION 13 #define PY_MICRO_VERSION 0 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA -#define PY_RELEASE_SERIAL 1 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA +#define PY_RELEASE_SERIAL 0 /* Version as a string */ -#define PY_VERSION "3.12.0b1" +#define PY_VERSION "3.13.0a0" /*--end constants--*/ /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. |