We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03a7354 commit aac4940Copy full SHA for aac4940
postgis/geometry.py
@@ -1,8 +1,10 @@
1
+import warnings
2
+
3
try:
4
# Do not make psycopg2 a requirement.
5
from psycopg2.extensions import ISQLQuote
6
except ImportError:
- print('psycopg2 not installed')
7
+ warnings.warn('psycopg2 not installed', ImportWarning)
8
9
10
from .ewkb import Reader, Typed, Writer
setup.py
@@ -46,7 +46,7 @@ def list_modules(dirname):
46
cmdclass = {'build_ext': build_ext}
47
48
49
-VERSION = (1, 0, 3)
+VERSION = (1, 0, 4)
50
51
setup(
52
name='postgis',
0 commit comments