Bump version to 1.2.dev1

pull/39/head^2
grossmj 10 years ago
parent 440148aa0b
commit 20acca64b5

@ -629,8 +629,9 @@ class Qemu(IModule):
if "PROGRAMFILES" in os.environ and os.path.exists(os.environ["PROGRAMFILES"]):
paths.append(os.path.join(os.environ["PROGRAMFILES"], "qemu"))
elif sys.platform.startswith("darwin"):
# add a specific location on Mac OS X regardless of what's in $PATH
# add specific locations on Mac OS X regardless of what's in $PATH
paths.append("/usr/local/bin")
paths.append("/opt/local/bin")
for path in paths:
try:
for f in os.listdir(path):

@ -23,5 +23,5 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "1.1"
__version_info__ = (1, 1, 0, 0)
__version__ = "1.2.dev1"
__version_info__ = (1, 2, 0, 99)

Loading…
Cancel
Save