8000
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.
2 parents fa817f5 + 85db427 commit dd8542aCopy full SHA for dd8542a
setup.py
@@ -229,6 +229,10 @@ def _install_packages(self):
229
nuget = "mono %s" % nuget
230
use_shell = True
231
232
+ cmd = "%s update -self" % nuget
233
+ self.announce("Updating NuGet: %s" % cmd)
234
+ check_call(cmd, shell=use_shell)
235
+
236
cmd = "%s restore pythonnet.sln -o packages" % nuget
237
self.announce("Installing packages: %s" % cmd)
238
check_call(cmd, shell=use_shell)
@@ -323,7 +327,7 @@ def _get_interop_filename():
323
327
324
328
setup(
325
329
name="pythonnet",
326
- version="2.1.0",
330
+ version="2.2.0-dev1",
331
description=".Net and Mono integration for Python",
332
url='http://pythonnet.github.io/',
333
author="Python for .Net developers",
0 commit comments