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

Fix cffi handling

parent d3df08a2
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -8,7 +8,7 @@ The core `queries.Queries` class will automatically register support for UUIDs,
Unicode and Unicode arrays.
 
"""
__version__ = '1.8.0'
__version__ = '1.8.1'
version = __version__
 
import logging
Loading
Loading
@@ -18,8 +18,8 @@ import platform
PYPY = False
target = platform.python_implementation()
if target == 'PyPy': # pragma: no cover
from psycopg2cffi import compat
compat.register()
import psycopg2cffi.compat
psycopg2cffi.compat.register()
PYPY = True
 
# Add a Null logging handler to prevent logging output when un-configured
Loading
Loading
Loading
Loading
@@ -29,7 +29,7 @@ classifiers = ['Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries']
 
setup(name='queries',
version='1.8.0',
version='1.8.1',
description="Simplified PostgreSQL client built upon Psycopg2",
maintainer="Gavin M. Roy",
maintainer_email="gavinmroy@gmail.com",
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