Skip to content

Commit dd8542a

Browse files
author
denfromufa
authored
Merge pull request #6 from pythonnet/master
latest from master
2 parents fa817f5 + 85db427 commit dd8542a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,10 @@ def _install_packages(self):
229229
nuget = "mono %s" % nuget
230230
use_shell = True
231231

232+
cmd = "%s update -self" % nuget
233+
self.announce("Updating NuGet: %s" % cmd)
234+
check_call(cmd, shell=use_shell)
235+
232236
cmd = "%s restore pythonnet.sln -o packages" % nuget
233237
self.announce("Installing packages: %s" % cmd)
234238
check_call(cmd, shell=use_shell)
@@ -323,7 +327,7 @@ def _get_interop_filename():
323327

324328
setup(
325329
name="pythonnet",
326-
version="2.1.0",
330+
version="2.2.0-dev1",
327331
description=".Net and Mono integration for Python",
328332
url='http://pythonnet.github.io/',
329333
author="Python for .Net developers",

0 commit comments

Comments
 (0)