We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2edad5e commit 508e48aCopy full SHA for 508e48a
src/client/pythonEnvironments/base/info/index.ts
@@ -64,11 +64,21 @@ export type PythonEnvBaseInfo = {
64
// * binDir: string (where env-installed executables are found)
65
};
66
67
+/**
68
+ * The possible Python release levels.
69
+ */
70
+export enum PythonReleaseLevel {
71
+ Alpha = 'alpha',
72
+ Beta = 'beta',
73
+ Candidate = 'candidate',
74
+ Final = 'final'
75
+}
76
+
77
/**
78
* Release information for a Python version.
79
*/
80
export type PythonVersionRelease = {
- level: 'alpha' | 'beta' | 'candidate' | 'final';
81
+ level: PythonReleaseLevel;
82
serial: number;
83
84
0 commit comments