We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca0f0e4 commit 5522e80Copy full SHA for 5522e80
1 file changed
clr_loader/util/runtime_spec.py
@@ -18,7 +18,8 @@ def tfm(self) -> str:
18
19
@property
20
def floor_version(self) -> str:
21
- return f"{self.version[:3]}.0"
+ major, minor, _ = self.version.split(".")
22
+ return f"{major}.{minor}.0"
23
24
25
def runtime_config(self) -> Dict[str, Any]:
0 commit comments