Skip to content

Commit

Permalink
On py2: keep psycopg2 version free
Browse files Browse the repository at this point in the history
As there is not a unanimous version OK for all plateforms
(although the one really used in prod will be 2.5.4).
  • Loading branch information
Pierre-Etienne Bougue committed Aug 11, 2023
1 parent 9863389 commit b75c80b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion source/eitri/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
future==0.18.3
docker==3.4.1
retrying==1.3.3
psycopg2==2.5.4 ; python_version < "3.9" # matching the version installed on our debian 8 images
psycopg2 ; python_version < "3.9" # keep it free: 2.5.4 is installed on debian 8 images, but doesn't handle PG 13.11 from debian 11
psycopg2-binary==2.9.7 ; python_version >= "3.9"
GeoAlchemy2==0.2.4
SQLAlchemy==1.3.3
Expand Down
2 changes: 1 addition & 1 deletion source/jormungandr/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ blinker==1.3
itsdangerous==1.1.0
protobuf==3.15.0 ; python_version < "3.9"
protobuf==3.20.3 ; python_version >= "3.9"
psycopg2==2.5.4 ; python_version < "3.9" # matching the version installed on our debian 8 images
psycopg2 ; python_version < "3.9" # keep it free: 2.5.4 is installed on debian 8 images, but doesn't handle PG 13.11 from debian 11
psycopg2-binary==2.9.7 ; python_version >= "3.9"
pyzmq==15.4.0 ; python_version < "3.9"
pyzmq==25.0.2 ; python_version >= "3.9"
Expand Down
2 changes: 1 addition & 1 deletion source/sql/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ GeoAlchemy2==0.2.4
Mako==0.9.1
SQLAlchemy==1.3.3
alembic==1.0.11
psycopg2==2.5.4 ; python_version < "3.9" # matching the version installed on our debian 8 images
psycopg2 ; python_version < "3.9" # keep it free: 2.5.4 is installed on debian 8 images, but doesn't handle PG 13.11 from debian 11
psycopg2-binary==2.9.7 ; python_version >= "3.9"
2 changes: 1 addition & 1 deletion source/tyr/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ itsdangerous==1.1.0
setuptools==44.1.0 ; python_version == "2.7"
protobuf==3.15.0 ; python_version < "3.9"
protobuf==3.20.3 ; python_version >= "3.9"
psycopg2==2.5.4 ; python_version < "3.9" # matching the version installed on our debian 8 images
psycopg2 ; python_version < "3.9" # keep it free: 2.5.4 is installed on debian 8 images, but doesn't handle PG 13.11 from debian 11
psycopg2-binary==2.9.7 ; python_version >= "3.9"
pytz==2013.9
six==1.13.0
Expand Down

0 comments on commit b75c80b

Please sign in to comment.