diff --git a/Directory.Build.props b/Directory.Build.props
index 8c5b53685..965610f91 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -6,7 +6,7 @@
Python.NET
10.0
false
- $([System.IO.File]::ReadAllText("version.txt"))
+ $([System.IO.File]::ReadAllText($(MSBuildThisFileDirectory)version.txt))
$(FullVersion.Split('-', 2)[0])
$(FullVersion.Split('-', 2)[1])
diff --git a/pyproject.toml b/pyproject.toml
index 5ee89d3b7..ba84e7ef4 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -10,7 +10,7 @@ license = {text = "MIT"}
readme = "README.rst"
dependencies = [
- "clr_loader>=0.1.7"
+ "clr_loader==0.1.7"
]
classifiers = [
diff --git a/pythonnet/__init__.py b/pythonnet/__init__.py
index 9876a0bec..8f3478713 100644
--- a/pythonnet/__init__.py
+++ b/pythonnet/__init__.py
@@ -121,7 +121,7 @@ def load(
def unload() -> None:
- """Explicitly unload a laoded runtime and shut down Python.NET"""
+ """Explicitly unload a loaded runtime and shut down Python.NET"""
global _RUNTIME, _LOADER_ASSEMBLY
if _LOADER_ASSEMBLY is not None:
diff --git a/src/embed_tests/TestConverter.cs b/src/embed_tests/TestConverter.cs
index e586eda1b..0686d528b 100644
--- a/src/embed_tests/TestConverter.cs
+++ b/src/embed_tests/TestConverter.cs
@@ -148,7 +148,7 @@ public void PyIntImplicit()
{
var i = new PyInt(1);
var ni = (PyObject)i.As