File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/client/pythonEnvironments/base/info Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
// Licensed under the MIT License.
3
3
4
4
import { Architecture } from '../../../common/utils/platform' ;
5
- import { Version , VersionInfo } from '../../../common/utils/version' ;
5
+ import { BasicVersionInfo , VersionInfo } from '../../../common/utils/version' ;
6
6
7
7
/**
8
8
* IDs for the various supported Python environments.
@@ -87,7 +87,7 @@ export type PythonVersionRelease = {
87
87
*
88
88
* @prop sysVersion - the raw text from `sys.version`
89
89
*/
90
- export type PythonVersion = VersionInfo & {
90
+ export type PythonVersion = BasicVersionInfo & {
91
91
release : PythonVersionRelease ;
92
92
sysVersion ?: string ;
93
93
} ;
@@ -118,7 +118,7 @@ export type PythonDistroMetaInfo = {
118
118
* @prop binDir - where to look for the distro's executables (i.e. tools)
119
119
*/
120
120
export type PythonDistroInfo = PythonDistroMetaInfo & {
121
- version ?: Version ;
121
+ version ?: VersionInfo ;
122
122
binDir ?: string ;
123
123
} ;
124
124
You can’t perform that action at this time.
0 commit comments