You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

postgis

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postgis - pypi Package Compare versions

Comparing version
1.0.2
to
1.0.3
+1
-1
PKG-INFO
Metadata-Version: 1.1
Name: postgis
Version: 1.0.2
Version: 1.0.3
Summary: Pyscopg and asyncpg helpers to work with PostGIS.

@@ -5,0 +5,0 @@ Home-page: https://github.com/yohanboniface/python-postgis

Metadata-Version: 1.1
Name: postgis
Version: 1.0.2
Version: 1.0.3
Summary: Pyscopg and asyncpg helpers to work with PostGIS.

@@ -5,0 +5,0 @@ Home-page: https://github.com/yohanboniface/python-postgis

@@ -10,3 +10,6 @@ "Postgis helpers for psycopg2 and asyncpg."

from .polygon import Polygon
from .psycopg import register # Retrocompat.
try:
from .psycopg import register # Retrocompat.
except ImportError:
pass

@@ -13,0 +16,0 @@ __all__ = ['Geometry', 'register', 'Point', 'LineString', 'Polygon',

@@ -49,3 +49,3 @@ """Pyscopg and asyncpg helpers to work with PostGIS."""

VERSION = (1, 0, 2)
VERSION = (1, 0, 3)

@@ -52,0 +52,0 @@ setup(