Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
add changes, fix reference to pyscopg2
Browse files Browse the repository at this point in the history
  • Loading branch information
smnorris committed Jan 25, 2019
1 parent f9aa2d7 commit 14b15b2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
13 changes: 11 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ Changes

All issue numbers are relative to https://github.com/smnorris/pgdata/issues.

0.0.11 (2019-01-25)
------------------
- add missing psycopg2-binary requirement to requirements.txt

0.0.10 (2019-01-25)
------------------
- remove bc2pg command and bcdata references/requirement
- add -s_srs option to ogr2pg

0.0.9 (2018-03-14)
------------------
- fix bug where `sql_path` passed to connection was not used (#13)
Expand All @@ -20,10 +29,10 @@ All issue numbers are relative to https://github.com/smnorris/pgdata/issues.
0.0.6 (2018-01-19)
------------------
- add bc2pg command

0.0.5 (2018-01-12)
------------------
- rename module to avoid collisions with existing pgdb on pypi
- rename module to avoid collisions with existing pgdb on pypi

0.0.4 (2017-12-15)
------------------
Expand Down
2 changes: 1 addition & 1 deletion pgdata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from pgdata.database import Database
from pgdata.table import Table

__version__ = "0.0.11.dev0"
__version__ = "0.0.11"


def connect(url=None, schema=None, sql_path=None, multiprocessing=False):
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
psycopg2
psycopg2-binary
sqlalchemy
sqlalchemy-utils
geoalchemy2
Expand Down

0 comments on commit 14b15b2

Please sign in to comment.