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 4a6cebf commit c366416Copy full SHA for c366416
setup.py
@@ -241,9 +241,10 @@ def _install_packages(self):
241
nuget = "mono %s" % nuget
242
use_shell = True
243
244
- cmd = "%s update -self" % nuget
245
- self.announce("Updating NuGet: %s" % cmd)
246
- check_call(cmd, shell=use_shell)
+ # Disable "nuget update -self" because latest version nuget cannot be executed by mono 4.x
+ # cmd = "%s update -self" % nuget
+ # self.announce("Updating NuGet: %s" % cmd)
247
+ # check_call(cmd, shell=use_shell)
248
249
cmd = "%s restore pythonnet.sln -o packages" % nuget
250
self.announce("Installing packages: %s" % cmd)
0 commit comments