Skip to content

Commit

Permalink
Merge pull request #4088 from hove-io/pin_psycopg2_py2.7_same_deb8
Browse files Browse the repository at this point in the history
Python2.7: pin psycopg2 to the version installed on our debian 8 images
  • Loading branch information
pbougue authored Aug 11, 2023
2 parents e45b4f0 + b75c80b commit 2cc9ff9
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.8.6 ; python_version < "3.9"
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.8.6 ; python_version < "3.9"
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.8.6 ; python_version < "3.9"
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.8.6 ; python_version < "3.9"
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 2cc9ff9

Please sign in to comment.