Skip to content

Commit

Permalink
Upgrade psycopg2 on Python 3 (#9590)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek committed Aug 3, 2021
1 parent 541005b commit ab277e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ ply==3.10
prometheus-client==0.9.0
protobuf==3.7.0
psutil==5.7.2
psycopg2-binary==2.8.6
psycopg2-binary==2.8.6; python_version < "3.0"
psycopg2-binary==2.9.1; python_version > "3.0"
pyasn1==0.4.6
pycryptodomex==3.10.1
pydantic==1.8.2; python_version > "3.0"
Expand Down
3 changes: 2 additions & 1 deletion postgres/requirements.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
cachetools==3.1.1
psycopg2-binary==2.8.6
psycopg2-binary==2.8.6; python_version < '3.0'
psycopg2-binary==2.9.1; python_version > '3.0'
semver==2.9.0
futures==3.3.0; python_version < '3.0'

0 comments on commit ab277e4

Please sign in to comment.