Skip to content

Commit c2d1f09

Browse files
committed
4.3.0 updates
1 parent 5597902 commit c2d1f09

File tree

6 files changed

+15
-13
lines changed

6 files changed

+15
-13
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Change Log
66

77
NOTE: The 4.0.0 Release of SCons dropped Python 2.7 Support
8-
NOTE: The 4.2.0 Release of SCons will deprecate Python 3.5 Support. Python 3.5 support will be dropped in the next major release.
8+
NOTE: 4.3.0 now requires Python 3.6.0 and above. Python 3.5.x is no longer supported
99

1010
RELEASE 4.3.0 - Tue, 16 Nov 2021 18:12:46 -0700
1111

RELEASE.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on the SCons download page:
44
https://scons.org/pages/download.html
55

66

7+
NOTE: 4.3.0 now requires Python 3.6.0 and above. Python 3.5.x is no longer supported
8+
79
Here is a summary of the changes since 4.2.0:
810

911
NEW FUNCTIONALITY

SCons/Script/Main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"""
3333

3434
# these define the range of versions SCons supports
35-
unsupported_python_version = (3, 4, 0)
35+
unsupported_python_version = (3, 5, 0)
3636
deprecated_python_version = (3, 6, 0)
3737

3838
import SCons.compat

SCons/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
__version__="4.2.0"
1+
__version__="4.3.0"
22
__copyright__="Copyright (c) 2001 - 2021 The SCons Foundation"
3-
__developer__="bdbaddog"
4-
__date__="Sat, 31 Jul 2021 18:12:46 -0700"
5-
__buildsys__="ProDog2020"
6-
__revision__="fcdadeef19fe5fead09fa7544a27502be65312be"
7-
__build__="fcdadeef19fe5fead09fa7544a27502be65312be"
3+
__developer__="bdeegan"
4+
__date__="Tue, 16 Nov 2021 19:09:21 +0000"
5+
__buildsys__="octodog"
6+
__revision__="559790274f66fa55251f5754de34820a29c7327a"
7+
__build__="559790274f66fa55251f5754de34820a29c7327a"
88
# make sure compatibility is always in place
99
import SCons.compat # noqa

bin/upload-release-files.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ SF_TOPDIR='/home/frs/project/scons'
1818
# the build products are here:
1919
cd build/dist
2020
cp -f ../../CHANGES.txt ../../RELEASE.txt .
21-
cp -f ../../README-sf.rst ./README.rst
21+
cp -f ../../README-SF.rst ./README.rst
2222

2323
set -x
2424

@@ -30,8 +30,8 @@ $RSYNC $RSYNCOPTS\
3030

3131
# Upload main scons release files:
3232
$RSYNC $RSYNCOPTS \
33-
scons-$VERSION.tar.gz \
34-
scons-$VERSION.zip \
33+
SCons-$VERSION.tar.gz \
34+
SCons-$VERSION.zip \
3535
CHANGES.txt RELEASE.txt \
3636
$SF_USER@$SF_MACHINE:$SF_TOPDIR/scons/$VERSION/
3737

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<screen xmlns="http://www.scons.org/dbxsd/v1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.scons.org/dbxsd/v1.0 http://www.scons.org/dbxsd/v1.0/scons.xsd">% <userinput>scons -Q</userinput>
2-
cc -o f4.o -c f4.c
3-
cc -o f3.o -c f3.c
42
cc -o f5.o -c f5.c
53
cc -o f2.o -c f2.c
4+
cc -o f4.o -c f4.c
65
cc -o f1.o -c f1.c
6+
cc -o f3.o -c f3.c
77
cc -o prog f1.o f2.o f3.o f4.o f5.o
88
</screen>

0 commit comments

Comments
 (0)