Added constant for Python 3.12.

This commit is contained in:
Eric Traut 2022-06-13 00:50:32 -07:00
parent 055dc1296a
commit adf7c3e92e

View File

@ -24,6 +24,7 @@ export enum PythonVersion {
V3_9 = 0x0309,
V3_10 = 0x030a,
V3_11 = 0x030b,
V3_12 = 0x030c,
}
export const latestStablePythonVersion = PythonVersion.V3_10;