From 35bfbb4b01ba03aeed10ee8c0ab9dc7219d1c2b1 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 14 Feb 2017 19:37:03 -0800 Subject: [PATCH] Bump version number, add alpha tag --- buildtools/version.py | 4 ++-- demo/version.py | 2 +- src/core_ex.py | 3 --- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/buildtools/version.py b/buildtools/version.py index 95502054..46c732bd 100644 --- a/buildtools/version.py +++ b/buildtools/version.py @@ -13,10 +13,10 @@ VER_MAJOR = 3 # Matches wxWidgets MAJOR version number VER_MINOR = 0 # Matches wxWidgets MINOR version number -VER_RELEASE = 3 # wxPython RELEASE number for the given wxWidgets +VER_RELEASE = 4 # wxPython RELEASE number for the given wxWidgets # MAJOR.MINOR version. -VER_FLAGS = "" # wxPython release flags +VER_FLAGS = "a1" # wxPython release flags # The VER_FLAGS value is appended to the version number constructed from the # first 3 components and should be set according to the following patterns. diff --git a/demo/version.py b/demo/version.py index b7e8b3b6..af8d65bf 100644 --- a/demo/version.py +++ b/demo/version.py @@ -1,3 +1,3 @@ # This file was generated by Phoenix's wscript. -VERSION_STRING = '3.0.3' +VERSION_STRING = '3.0.4a1' diff --git a/src/core_ex.py b/src/core_ex.py index efb2fed0..9d1f09a5 100644 --- a/src/core_ex.py +++ b/src/core_ex.py @@ -8,9 +8,6 @@ if 'wxEVT_NULL' in dir(): __version__ = VERSION_STRING assert MAJOR_VERSION == wx._core.MAJOR_VERSION, "wxPython/wxWidgets version mismatch" assert MINOR_VERSION == wx._core.MINOR_VERSION, "wxPython/wxWidgets version mismatch" - if RELEASE_NUMBER != wx._core.RELEASE_NUMBER: - import warnings - warnings.warn("wxPython/wxWidgets release number mismatch") # Register a function to be called when Python terminates that will clean # up and release all system resources that wxWidgets allocated.