-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.py
43 lines (40 loc) · 1.62 KB
/
version.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#----------------------------------------------------------------------
# Name: buildtools.version
# Purpose: wxPython version numbers used in the build. This can be
# considered the master copy of the version digits.
#
# Author: Robin Dunn
#
# Created: 3-Nov-2010
# Copyright: (c) 2013 by Total Control Software
# License: wxWindows License
#----------------------------------------------------------------------
VER_MAJOR = 3 # The first three must match wxWidgets
VER_MINOR = 0
VER_RELEASE = 1
VER_FLAGS = "" # wxPython release flags
# Set the VER_FLAGS component according to the following patterns. These
# should help us to better conform to the setuptools and/or PEP-0386 notions
# of version numbers.
#
# "" for final release builds
#
# "-1" for numbered post releases, such as when there are
# additional wxPython releases for the same wxWidgets
# release. TDB: use - or .post or ?
#
# ".dev12345" for daily snapshot builds, by default this is automatically
# pulled from the REV.txt file made by the setrev command,
# if it exists, and is appended to VER_FLAGS
#
# "a1" for official alpha releases
# "b1" for beta relases
# "rc1" for release candidate releases
#
# "-1a1" For alpha releases of a numbered post release, (betas, etc.
# of numbered post releases can be done the same way)
#
# See also:
#
# http://pythonhosted.org/setuptools/setuptools.html
# http://www.python.org/dev/peps/pep-0386/