From 94f691e5ff47bae48be508ef05f3eb38e8d6264b Mon Sep 17 00:00:00 2001 From: Benedikt Reinartz Date: Wed, 22 Dec 2021 10:18:54 +0100 Subject: [PATCH] Require newest available clr-loader Before `pythonnet` 3.0 is finally released, we should bump clr-loader to 1.0. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 77211e442..58e177262 100644 --- a/setup.py +++ b/setup.py @@ -151,7 +151,7 @@ def finalize_options(self): author="The Contributors of the Python.NET Project", author_email="pythonnet@python.org", packages=["pythonnet", "pythonnet.find_libpython"], - install_requires=["clr_loader"], + install_requires=["clr_loader >= 0.1.7"], long_description=long_description, long_description_content_type="text/x-rst", py_modules=["clr"],