Re: SCons 4.3.0 released
Mats Wichmann <[email protected]> Wed, 17 Nov 2021 16:45:08 -0700
| Newsgroups | gmane.comp.programming.tools.scons.devel |
|---|---|
| Message-ID | <[email protected]> |
On 11/17/21 09:13, Bill Deegan wrote: > A new SCons release, 4.3.0, is now available > on the SCons download page: > > https://scons.org/pages/download.html > <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 For the curious, nothing in 4.3.0 except SCons' own version check prevents using Py3.5, but from now on there are likely to be commits which use at least two features incompatible with 3.5: f-strings and typing annotations (3.5 supported annotations, but except for function returns it had to be the "embedded in a separate comment" style that was Py2-compatible). A few annotations have gone in over the last few months, but they've been limited to return types only. There's no wholesale typing conversion project underway, just nibbling at some places if they otherwise get touched.