Skip to content

Commit

Permalink
Use flexidate
Browse files Browse the repository at this point in the history
Flexidate is a date parser that works well with date that out of
Python's built-in datetime package.
  • Loading branch information
ivanovyordan committed Apr 12, 2021
1 parent 2fde815 commit 268f99d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
'singer-python==5.3.1',
'psycopg2==2.7.4',
'strict-rfc3339==0.7',
'flexidate==1.4',
],
extras_require={
'dev': [
Expand Down
2 changes: 1 addition & 1 deletion tap_postgres/sync_strategies/logical_replication.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import singer.metadata as metadata
import tap_postgres.db as post_db
import tap_postgres.sync_strategies.common as sync_common
from dateutil.parser import parse
from flexidate import parse
import psycopg2
from psycopg2 import sql
import copy
Expand Down

0 comments on commit 268f99d

Please sign in to comment.