1.0.2
1.0.2
Released: Wed Aug 26 2015
-
[bug] [installation] The "universal wheel" marker is removed from setup.cfg, because
our setup.py currently makes use of conditional dependencies.
In #249, the discussion is ongoing on how to correct our
setup.cfg / setup.py fully so that we can handle the per-version
dependency changes while still maintaining optimal wheel settings,
so this issue is not yet fully resolved.References: #249
-
[bug] [py3k] Repair some calls within the ast module that no longer work on Python3.5;
additionally replace the use ofinspect.getargspec()
under
Python 3 (seems to be called from the TG plugin) to avoid deprecation
warnings.References: #250
-
[bug] Update the Lingua translation extraction plugin to correctly
handle templates mixing Python control statements (such as if,
for and while) with template fragments. Pull request courtesy
Laurent Daverio. -
[feature] Added
STOP_RENDERING
keyword for returning/exiting from a
template early, which is a synonym for an empty string""
.
Previously, the docs suggested a bare
return
, but this could causeNone
to appear in the
rendered template result.References: #236