Skip to content

Commit

Permalink
4.3.0 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
bdbaddog committed Nov 17, 2021
1 parent 5597902 commit c2d1f09
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Change Log

NOTE: The 4.0.0 Release of SCons dropped Python 2.7 Support
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.
NOTE: 4.3.0 now requires Python 3.6.0 and above. Python 3.5.x is no longer supported

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

Expand Down
2 changes: 2 additions & 0 deletions RELEASE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on the SCons download page:
https://scons.org/pages/download.html


NOTE: 4.3.0 now requires Python 3.6.0 and above. Python 3.5.x is no longer supported

Here is a summary of the changes since 4.2.0:

NEW FUNCTIONALITY
Expand Down
2 changes: 1 addition & 1 deletion SCons/Script/Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"""

# these define the range of versions SCons supports
unsupported_python_version = (3, 4, 0)
unsupported_python_version = (3, 5, 0)
deprecated_python_version = (3, 6, 0)

import SCons.compat
Expand Down
12 changes: 6 additions & 6 deletions SCons/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
__version__="4.2.0"
__version__="4.3.0"
__copyright__="Copyright (c) 2001 - 2021 The SCons Foundation"
__developer__="bdbaddog"
__date__="Sat, 31 Jul 2021 18:12:46 -0700"
__buildsys__="ProDog2020"
__revision__="fcdadeef19fe5fead09fa7544a27502be65312be"
__build__="fcdadeef19fe5fead09fa7544a27502be65312be"
__developer__="bdeegan"
__date__="Tue, 16 Nov 2021 19:09:21 +0000"
__buildsys__="octodog"
__revision__="559790274f66fa55251f5754de34820a29c7327a"
__build__="559790274f66fa55251f5754de34820a29c7327a"
# make sure compatibility is always in place
import SCons.compat # noqa
6 changes: 3 additions & 3 deletions bin/upload-release-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ SF_TOPDIR='/home/frs/project/scons'
# the build products are here:
cd build/dist
cp -f ../../CHANGES.txt ../../RELEASE.txt .
cp -f ../../README-sf.rst ./README.rst
cp -f ../../README-SF.rst ./README.rst

set -x

Expand All @@ -30,8 +30,8 @@ $RSYNC $RSYNCOPTS\

# Upload main scons release files:
$RSYNC $RSYNCOPTS \
scons-$VERSION.tar.gz \
scons-$VERSION.zip \
SCons-$VERSION.tar.gz \
SCons-$VERSION.zip \
CHANGES.txt RELEASE.txt \
$SF_USER@$SF_MACHINE:$SF_TOPDIR/scons/$VERSION/

Expand Down
4 changes: 2 additions & 2 deletions doc/generated/examples/caching_ex-random_1.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<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>
cc -o f4.o -c f4.c
cc -o f3.o -c f3.c
cc -o f5.o -c f5.c
cc -o f2.o -c f2.c
cc -o f4.o -c f4.c
cc -o f1.o -c f1.c
cc -o f3.o -c f3.c
cc -o prog f1.o f2.o f3.o f4.o f5.o
</screen>

0 comments on commit c2d1f09

Please sign in to comment.