blob: db8388d960a4f69a45fa2361c8bbf0386bf652aa [file] [log] [blame]
Guido van Rossumf1176c41999-01-03 12:40:24 +00001
2/* Newfangled version identification scheme.
3
4 This scheme was added in Python 1.5.2b2; before that time, only PATCHLEVEL
5 was available. To test for presence of the scheme, test for
6 defined(PY_MAJOR_VERSION).
7
8 When the major or minor version changes, the VERSION variable in
9 configure.in must also be changed.
10
11 There is also (independent) API version information in modsupport.h.
12*/
13
14/* Values for PY_RELEASE_LEVEL */
15#define PY_RELEASE_LEVEL_ALPHA 0xA
16#define PY_RELEASE_LEVEL_BETA 0xB
Anthony Baxter49d42132004-11-15 15:03:25 +000017#define PY_RELEASE_LEVEL_GAMMA 0xC /* For release candidates */
Guido van Rossumf1176c41999-01-03 12:40:24 +000018#define PY_RELEASE_LEVEL_FINAL 0xF /* Serial should be 0 here */
Guido van Rossum9e478591999-04-13 14:47:26 +000019 /* Higher for patch releases */
Guido van Rossumf1176c41999-01-03 12:40:24 +000020
21/* Version parsed out into numeric values */
Guido van Rossum632ea6e2000-06-29 22:29:24 +000022#define PY_MAJOR_VERSION 2
Anthony Baxtera3bc5462004-11-30 13:16:15 +000023#define PY_MINOR_VERSION 5
Guido van Rossum21a50bd2000-03-29 01:46:45 +000024#define PY_MICRO_VERSION 0
Anthony Baxterb4096662006-08-16 03:42:26 +000025#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
Anthony Baxter798ed8f2006-08-16 03:58:37 +000026#define PY_RELEASE_SERIAL 1
Guido van Rossumf1176c41999-01-03 12:40:24 +000027
28/* Version as a string */
Anthony Baxterb4096662006-08-16 03:42:26 +000029#define PY_VERSION "2.5c1"
Guido van Rossumf1176c41999-01-03 12:40:24 +000030
Martin v. Löwis43b57802006-01-05 23:38:54 +000031/* Subversion Revision number of this file (not of the repository) */
32#define PY_PATCHLEVEL_REVISION "$Revision$"
33
Guido van Rossumf1176c41999-01-03 12:40:24 +000034/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
35 Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */
36#define PY_VERSION_HEX ((PY_MAJOR_VERSION << 24) | \
37 (PY_MINOR_VERSION << 16) | \
38 (PY_MICRO_VERSION << 8) | \
39 (PY_RELEASE_LEVEL << 4) | \
40 (PY_RELEASE_SERIAL << 0))