From 8b7a573a7fe9699b857f232cde087be6947e8a2a Mon Sep 17 00:00:00 2001 From: Vasily Ryabov Date: Sun, 9 Oct 2016 13:40:37 +0300 Subject: [PATCH] Add rc1 suffix to avoid often version conflicts of early users with further 0.6.0 release. --- pywinauto/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pywinauto/__init__.py b/pywinauto/__init__.py index 8b78a1066..83422c700 100644 --- a/pywinauto/__init__.py +++ b/pywinauto/__init__.py @@ -32,7 +32,7 @@ """Python package for automating GUI manipulation on Windows""" -__version__ = "0.6.0" +__version__ = "0.6.0.rc1" from . import findwindows WindowAmbiguousError = findwindows.WindowAmbiguousError diff --git a/setup.py b/setup.py index 62ad8dac4..c36f5a12f 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ def setup_path(path = ""): # shutil.move(setup_path("website"), setup_path("docs")) setup(name='pywinauto', - version = '0.6.0', + version = '0.6.0.rc1', description = 'pywinauto is a set of python ' 'modules to automate the Microsoft Windows GUI', keywords = "windows automation gui GuiAuto",