Codebase list flask-testing / 3763805
Update upstream source from tag 'upstream/0.8.1' Update to upstream version '0.8.1' with Debian dir 543caa1b391003ff39b02bfeb12c04d80be35ffd Nilesh Patra 3 years ago
5 changed file(s) with 15 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
00 Metadata-Version: 1.1
11 Name: Flask-Testing
2 Version: 0.8.0
2 Version: 0.8.1
33 Summary: Unit testing for Flask
44 Home-page: https://github.com/jarus/flask-testing
55 Author: Dan Jacob
00 Metadata-Version: 1.1
11 Name: Flask-Testing
2 Version: 0.8.0
2 Version: 0.8.1
33 Summary: Unit testing for Flask
44 Home-page: https://github.com/jarus/flask-testing
55 Author: Dan Jacob
271271 Changes
272272 =======
273273
274 0.8.1 (12.24.2020)
275 ------------------
276
277 * Fixes compatibility with ``json_available`` from previous versions of Flask
278
274279 0.8.0 (05.03.2020)
275280 ------------------
276281
3434 from werkzeug.utils import cached_property
3535
3636 # Use Flask's preferred JSON module so that our runtime behavior matches.
37 from flask import json_available, templating, template_rendered
37 from flask import templating, template_rendered
3838
3939 try:
4040 from flask import message_flashed
4444 message_flashed = None
4545 _is_message_flashed = False
4646
47 if json_available:
47 json_available = True
48
49 try:
4850 from flask import json
51 except ImportError:
52 json_available = False
53
4954
5055 # we'll use signals for template-related tests if
5156 # available in this version of Flask
3030
3131 setup(
3232 name='Flask-Testing',
33 version='0.8.0',
33 version='0.8.1',
3434 url='https://github.com/jarus/flask-testing',
3535 license='BSD',
3636 author='Dan Jacob',