Merge pull request #4544 from bdbaddog/win32_test_speedup
[scons.git] / ReleaseConfig
blob52fb6aaf7e5e3938e350cc4171fc563f3d9f0878
1 # MIT License
3 # Copyright The SCons Foundation
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
17 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
18 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 # After updating this file, run bin/update-release-info.py <MODE>.
28 # The version tuple that will be used for the release.  The fields are
29 # (major, minor, micro, type, patchlevel).  The release level is one of
30 # 'a' (alpha), 'b' (beta), 'rc' (release candidate), or 'final'.
31 # If the release type is not 'final', the patchlevel is set to the
32 # release date.  This value is mandatory and must be present in this file.
33 #version_tuple = (2, 2, 0, 'final', 0)
34 version_tuple = (4, 6, 2, 'a', 0)
36 # Python versions prior to unsupported_python_version cause a fatal error
37 # when that version is used.  Python versions prior to deprecate_python_version
38 # cause a warning to be issued (assuming it's not disabled).  These values are
39 # mandatory and must be present in the configuration file.
40 unsupported_python_version = (3, 6, 0)
41 deprecated_python_version = (3, 6, 0)
43 # If release_date is (yyyy, mm, dd, hh, mm, ss), that is used as the release
44 # date and time.  If release_date is (yyyy, mm, dd), it is used for the
45 # release date and the current time is used for the release timetime.  If
46 # release_date is not given, the current date and time are used.
47 #release_date = (2012, 12, 21)
49 # If month_year is not given, the release month and year are used.
50 #month_year = 'December 2012'
52 # If copyright years is not given, the release year is used as the end.
53 copyright_years = '2001 - 2023'
55 # Local Variables:
56 # tab-width:4
57 # indent-tabs-mode:nil
58 # End:
59 # vim: set expandtab tabstop=4 shiftwidth=4: