<feed xmlns='http://www.w3.org/2005/Atom'>
<title>external_python_mako/mako, branch master</title>
<subtitle>Python mako
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_mako/'/>
<entry>
<title>Version 1.1.4 placeholder</title>
<updated>2020-05-29T20:30:52+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2020-05-29T20:30:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_mako/commit/?id=75fbbaebb94b5f679daefb32f39b12ad4b0e214b'/>
<id>75fbbaebb94b5f679daefb32f39b12ad4b0e214b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch template encoding to utf-8</title>
<updated>2020-05-29T20:25:11+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2020-05-29T20:25:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_mako/commit/?id=68b74a1bf581433b59bfb1656b654018607c092d'/>
<id>68b74a1bf581433b59bfb1656b654018607c092d</id>
<content type='text'>
The default template encoding is now utf-8.  Previously, the encoding was
"ascii", which was standard throughout Python 2.   This allows that
"magic encoding comment" for utf-8 templates is no longer required.

Fixes: #267
Change-Id: I411a75ebd6161e2517e06b5180a3571e5f5d923e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The default template encoding is now utf-8.  Previously, the encoding was
"ascii", which was standard throughout Python 2.   This allows that
"magic encoding comment" for utf-8 templates is no longer required.

Fixes: #267
Change-Id: I411a75ebd6161e2517e06b5180a3571e5f5d923e
</pre>
</div>
</content>
</entry>
<entry>
<title>Version 1.1.3 placeholder</title>
<updated>2020-03-01T17:40:07+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2020-03-01T17:40:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_mako/commit/?id=f619c28764e21f2569772d808d6294f435823d9f'/>
<id>f619c28764e21f2569772d808d6294f435823d9f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add --output-file option to mako-render</title>
<updated>2020-02-26T16:14:15+00:00</updated>
<author>
<name>Björn Dahlgren</name>
<email>bjodah@gmail.com</email>
</author>
<published>2018-11-27T02:52:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_mako/commit/?id=64f2f8f123acf4a65d7ddc81acdf115fa8f6ad0b'/>
<id>64f2f8f123acf4a65d7ddc81acdf115fa8f6ad0b</id>
<content type='text'>
Added --output-file argument to the Mako command line runner, which allows
a specific output file to be selected.  Pull request courtesy Björn
Dahlgren.

Fixes: #283
Change-Id: Iae7e2d42d5ae4bc6f09663c115bda9e3797ce68c
Pull-request: https://bitbucket.org/zzzeek/mako/pull-requests/27
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added --output-file argument to the Mako command line runner, which allows
a specific output file to be selected.  Pull request courtesy Björn
Dahlgren.

Fixes: #283
Change-Id: Iae7e2d42d5ae4bc6f09663c115bda9e3797ce68c
Pull-request: https://bitbucket.org/zzzeek/mako/pull-requests/27
</pre>
</div>
</content>
</entry>
<entry>
<title>Version 1.1.2 placeholder</title>
<updated>2020-01-20T21:16:55+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2020-01-20T21:16:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_mako/commit/?id=699b37a432392b87132b4af08eeb82b47e029670'/>
<id>699b37a432392b87132b4af08eeb82b47e029670</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace usage of parser.suite with ast.parse</title>
<updated>2020-01-06T02:18:15+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2020-01-06T02:11:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_mako/commit/?id=2dae7d2c3da73653e6de329dc15c55056a0b9ab6'/>
<id>2dae7d2c3da73653e6de329dc15c55056a0b9ab6</id>
<content type='text'>
Replaced usage of the long-superseded "parser.suite" module in the
mako.util package for parsing the python magic encoding comment with the
"ast.parse" function introduced many years ago in Python 2.5, as
"parser.suite" is emitting deprecation warnings in Python 3.9.

Additionally repair two error-detection unit tests that were using a
"print" statement despite the tests running under Python 3; while the
tests were passing they were no longer testing the right thing.

Fixes: #310
Change-Id: Id436e2c6620438ef16b3f188b989233c82972b29
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replaced usage of the long-superseded "parser.suite" module in the
mako.util package for parsing the python magic encoding comment with the
"ast.parse" function introduced many years ago in Python 2.5, as
"parser.suite" is emitting deprecation warnings in Python 3.9.

Additionally repair two error-detection unit tests that were using a
"print" statement despite the tests running under Python 3; while the
tests were passing they were no longer testing the right thing.

Fixes: #310
Change-Id: Id436e2c6620438ef16b3f188b989233c82972b29
</pre>
</div>
</content>
</entry>
<entry>
<title>happy new year</title>
<updated>2020-01-06T02:17:37+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2020-01-06T02:16:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_mako/commit/?id=b06ce6ea566247b306f0531c5716e57b9c7b4876'/>
<id>b06ce6ea566247b306f0531c5716e57b9c7b4876</id>
<content type='text'>
also fix one flake8 error

Change-Id: Ia828267fce34d5b194898e3e301b6d463470f068
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
also fix one flake8 error

Change-Id: Ia828267fce34d5b194898e3e301b6d463470f068
</pre>
</div>
</content>
</entry>
<entry>
<title>Version 1.1.1 placeholder</title>
<updated>2019-08-01T16:29:03+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2019-08-01T16:29:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_mako/commit/?id=eda9a8322eafc2ed254d832c62b23baf40f0040b'/>
<id>eda9a8322eafc2ed254d832c62b23baf40f0040b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump Python versions, remove conditional imports</title>
<updated>2019-07-27T16:34:21+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2019-07-27T16:01:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_mako/commit/?id=338cad687a1f49b021e81d33fd16847a4c5c7731'/>
<id>338cad687a1f49b021e81d33fd16847a4c5c7731</id>
<content type='text'>
Mako 1.1 now supports Python versions:

* 2.7
* 3.4 and higher

This includes that setup.py no longer includes any conditionals, allowing
for a pure Python wheel build, however this is not necessarily part of the
Pypi release process as of yet.  The test suite also raises for Python
deprecation warnings.

Fixes: #249

Replaced usage of ``inspect.getfullargspec()`` with the vendored version
used by SQLAlchemy, Alembic to avoid future deprecation warnings.  Also
cleans up an additional version of the same function that's apparently
been floating around for some time.

Fixes: #295
Change-Id: I98274c16b6022289d1890f4daf532bab323ab112
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Mako 1.1 now supports Python versions:

* 2.7
* 3.4 and higher

This includes that setup.py no longer includes any conditionals, allowing
for a pure Python wheel build, however this is not necessarily part of the
Pypi release process as of yet.  The test suite also raises for Python
deprecation warnings.

Fixes: #249

Replaced usage of ``inspect.getfullargspec()`` with the vendored version
used by SQLAlchemy, Alembic to avoid future deprecation warnings.  Also
cleans up an additional version of the same function that's apparently
been floating around for some time.

Fixes: #295
Change-Id: I98274c16b6022289d1890f4daf532bab323ab112
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "use timeit.default_timer instead of time.clock() / time.time()"</title>
<updated>2019-07-27T16:08:58+00:00</updated>
<author>
<name>mike bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2019-07-27T16:08:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_mako/commit/?id=a79fbaad5fe507e6fce76c891d0793444be6d6e1'/>
<id>a79fbaad5fe507e6fce76c891d0793444be6d6e1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
