mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-07-21 12:41:10 +02:00
Some checks failed
ci-build / build-source-dist (push) Has been cancelled
ci-build / build-wheels (arm64, macos-14, 3.10) (push) Has been cancelled
ci-build / build-wheels (arm64, macos-14, 3.11) (push) Has been cancelled
ci-build / build-wheels (arm64, macos-14, 3.12) (push) Has been cancelled
ci-build / build-wheels (arm64, macos-14, 3.13) (push) Has been cancelled
ci-build / build-wheels (arm64, macos-14, 3.9) (push) Has been cancelled
ci-build / build-wheels (x64, macos-13, 3.10) (push) Has been cancelled
ci-build / build-wheels (x64, macos-13, 3.11) (push) Has been cancelled
ci-build / build-wheels (x64, macos-13, 3.12) (push) Has been cancelled
ci-build / build-wheels (x64, macos-13, 3.13) (push) Has been cancelled
ci-build / build-wheels (x64, macos-13, 3.9) (push) Has been cancelled
ci-build / build-wheels (x64, ubuntu-22.04, 3.10) (push) Has been cancelled
ci-build / build-wheels (x64, ubuntu-22.04, 3.11) (push) Has been cancelled
ci-build / build-wheels (x64, ubuntu-22.04, 3.12) (push) Has been cancelled
ci-build / build-wheels (x64, ubuntu-22.04, 3.13) (push) Has been cancelled
ci-build / build-wheels (x64, ubuntu-22.04, 3.9) (push) Has been cancelled
ci-build / build-wheels (x64, windows-2022, 3.10) (push) Has been cancelled
ci-build / build-wheels (x64, windows-2022, 3.11) (push) Has been cancelled
ci-build / build-wheels (x64, windows-2022, 3.12) (push) Has been cancelled
ci-build / build-wheels (x64, windows-2022, 3.13) (push) Has been cancelled
ci-build / build-wheels (x64, windows-2022, 3.9) (push) Has been cancelled
ci-build / build-wheels (x86, windows-2022, 3.10) (push) Has been cancelled
ci-build / build-wheels (x86, windows-2022, 3.11) (push) Has been cancelled
ci-build / build-wheels (x86, windows-2022, 3.12) (push) Has been cancelled
ci-build / build-wheels (x86, windows-2022, 3.13) (push) Has been cancelled
ci-build / build-wheels (x86, windows-2022, 3.9) (push) Has been cancelled
ci-build / Build wxPython documentation (push) Has been cancelled
ci-build / Publish Python distribution to PyPI (push) Has been cancelled
ci-build / Create GitHub Release and upload source (push) Has been cancelled
ci-build / Upload wheels to snapshot-builds on wxpython.org (push) Has been cancelled
67 lines
2.4 KiB
Python
67 lines
2.4 KiB
Python
#----------------------------------------------------------------------
|
|
# Name: buildtools.version
|
|
# Purpose: wxPython project name and version numbers used in the
|
|
# build. This can be considered the master copy of the
|
|
# version digits and project name.
|
|
#
|
|
# Author: Robin Dunn
|
|
#
|
|
# Created: 3-Nov-2010
|
|
# Copyright: (c) 2010-2020 by Total Control Software
|
|
# License: wxWindows License
|
|
#----------------------------------------------------------------------
|
|
|
|
# Master copy of the project name
|
|
PROJECT_NAME = 'wxPython'
|
|
|
|
|
|
# The version numbers for wxPython are no longer kept in sync with the
|
|
# wxWidgets version number. In the past the common version number was used to
|
|
# indicate which version of wxWidgets should be used for the wxPython build.
|
|
# Now wxWidgets is a git submodule, and the linked version is included in the
|
|
# wxPython source tarball. That said, we should still bump up the MAJOR and
|
|
# MINOR numbers each time there is a corresponding bump in the wxWidgets
|
|
# version numbers.
|
|
VER_MAJOR = 4
|
|
VER_MINOR = 2
|
|
VER_RELEASE = 4
|
|
|
|
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.
|
|
# These should help us to better follow the PEP-0440 notions of version
|
|
# numbers, where public version identifiers are supposed to conform to the
|
|
# following scheme:
|
|
#
|
|
# [N!]N(.N)*[{a|b|rc}N][.postN][.devN]
|
|
#
|
|
#
|
|
# "" for final release builds
|
|
#
|
|
# "aN" for official alpha releases
|
|
# "bN" for official beta releases
|
|
# "rcN" for release candidate releases
|
|
#
|
|
# ".postN" for numbered post releases, such as when there are
|
|
# minor packaging or documentation issues that can be fixed
|
|
# with no code changes.
|
|
#
|
|
# ".postNaN" for an alpha (or beta or rc) build of a numbered post
|
|
# release
|
|
#
|
|
# ".dev12345" for daily snapshot builds, by default this is automatically
|
|
# pulled from the REV.txt file made by the setrev build command,
|
|
# if it exists, and is appended to VER_FLAGS
|
|
#
|
|
#
|
|
# See also:
|
|
# http://www.python.org/dev/peps/pep-0440/
|
|
|
|
|
|
# The version numbers of wxWidgets to be used in the build
|
|
wxVER_MAJOR = 3
|
|
wxVER_MINOR = 2
|
|
wxVER_RELEASE = 0 # only used when wxVER_MINOR is an odd value
|
|
|