Skip to content
Snippets Groups Projects
Commit 0c01e1e8 authored by Gavin M. Roy's avatar Gavin M. Roy
Browse files

Bump the version, remove Python 2.6

parent 579fe1d6
No related branches found
No related tags found
No related merge requests found
Version History
===============
 
1.11.0 2018-01-23
2.0.0 2018-01-23
-----------------
- Cleanup IOLoop and internal stack in ``TornadoSession`` on connection error.
In the case of a connection error, the failure to do this caused CPU to peg
@ 100% utilization looping on a non-existent file descriptor. Thanks to
`cknave <https://github.com/cknave>`_ for his work on identifying the issue,
proposing a fix, and writing a working test case.
- REMOVED support for Python 2.6
- FIXED CPU Pegging bug: Cleanup IOLoop and internal stack in ``TornadoSession``
on connection error. In the case of a connection error, the failure to do this
caused CPU to peg @ 100% utilization looping on a non-existent file descriptor.
Thanks to `cknave <https://github.com/cknave>`_ for his work on identifying the
issue, proposing a fix, and writing a working test case.
- Move the integration tests to use a local docker development environment
-
- Added new methods ``queries.pool.Pool.report`` and
``queries.pool.PoolManager.Report` for reporting pool status.
- Added new methods to ``queries.pool.Pool`` for returning a list of
busy, closed, executing, and locked connections.
 
1.10.4 2018-01-10
-----------------
Loading
Loading
Loading
Loading
@@ -14,7 +14,7 @@ both fast and easy.
*Key features include*:
 
- Simplified API
- Support of Python 2.6+ and 3.3+
- Support of Python 2.7+ and 3.4+
- PyPy support via psycopg2cffi_
- Asynchronous support for Tornado_
- Connection information provided by URI
Loading
Loading
@@ -79,9 +79,6 @@ Indices and tables
.. |Version| image:: https://img.shields.io/pypi/v/queries.svg?
:target: https://pypi.python.org/pypi/queries
 
.. |Downloads| image:: https://img.shields.io/pypi/dm/queries.svg?
:target: https://pypi.python.org/pypi/queries
.. |License| image:: https://img.shields.io/github/license/gmr/queries.svg?
:target: https://github.com/gmr/queries
 
Loading
Loading
Loading
Loading
@@ -8,7 +8,7 @@ The core `queries.Queries` class will automatically register support for UUIDs,
Unicode and Unicode arrays.
 
"""
__version__ = '1.2.0'
__version__ = '2.0.0'
version = __version__
 
import logging
Loading
Loading
Loading
Loading
@@ -17,7 +17,6 @@ classifiers = ['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
Loading
Loading
@@ -28,14 +27,14 @@ classifiers = ['Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries']
 
setup(name='queries',
version='1.10.4',
version='2.0.0',
description="Simplified PostgreSQL client built upon Psycopg2",
maintainer="Gavin M. Roy",
maintainer_email="gavinmroy@gmail.com",
url="https://github.com/gmr/queries",
install_requires=install_requires,
extras_require={'tornado': 'tornado'},
license=open('LICENSE').read(),
license='BSD',
package_data={'': ['LICENSE', 'README.rst']},
packages=['queries'],
classifiers=classifiers,
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment