From 7cdbc6728427b61c5096944ded39b212bd690853 Mon Sep 17 00:00:00 2001 From: Paul Anzel Date: Thu, 9 May 2024 19:03:49 -0500 Subject: [PATCH 1/2] Psycopg2 version bump --- .github/workflows/tests-mac.yml | 2 +- requirements.txt | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests-mac.yml b/.github/workflows/tests-mac.yml index dd6f31f962..578765c8fe 100644 --- a/.github/workflows/tests-mac.yml +++ b/.github/workflows/tests-mac.yml @@ -17,7 +17,7 @@ jobs: python-version: ['3.8', '3.11'] limited-dependencies: ['','TRUE'] - runs-on: macos-12 + runs-on: macos-latest steps: diff --git a/requirements.txt b/requirements.txt index 43aa054ce4..c124c8230c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -24,7 +24,7 @@ newmode==0.1.6 oauth2client==4.1.3 paramiko==3.4.0 petl==1.7.15 -psycopg2-binary==2.9.3 +psycopg2-binary==2.9.5 PyGitHub==1.51 PyJWT==2.4.0 # Otherwise `import jwt` would refer to python-jwt package python-dateutil==2.8.2 diff --git a/setup.py b/setup.py index 04655af48e..f468e49792 100644 --- a/setup.py +++ b/setup.py @@ -44,8 +44,8 @@ def main(): "newmode": ["newmode"], "ngpvan": ["suds-py3"], "mobilecommons": ["bs4"], - "postgres": ["psycopg2-binary", "SQLAlchemy"], - "redshift": ["boto3", "psycopg2-binary", "SQLAlchemy"], + "postgres": ["psycopg2-binary>2.9.4", "SQLAlchemy"], + "redshift": ["boto3", "psycopg2-binary>2.9.4", "SQLAlchemy"], "s3": ["boto3"], "salesforce": ["simple-salesforce"], "sftp": ["paramiko"], From 6cdf6e2f1ee8cad5b1bd293e969c85991dc3ca00 Mon Sep 17 00:00:00 2001 From: Paul Anzel Date: Thu, 9 May 2024 19:10:52 -0500 Subject: [PATCH 2/2] Testing 2.9.9 --- requirements.txt | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index c124c8230c..ffcb162484 100644 --- a/requirements.txt +++ b/requirements.txt @@ -24,7 +24,7 @@ newmode==0.1.6 oauth2client==4.1.3 paramiko==3.4.0 petl==1.7.15 -psycopg2-binary==2.9.5 +psycopg2-binary==2.9.9 PyGitHub==1.51 PyJWT==2.4.0 # Otherwise `import jwt` would refer to python-jwt package python-dateutil==2.8.2 diff --git a/setup.py b/setup.py index f468e49792..e89825ecac 100644 --- a/setup.py +++ b/setup.py @@ -44,8 +44,8 @@ def main(): "newmode": ["newmode"], "ngpvan": ["suds-py3"], "mobilecommons": ["bs4"], - "postgres": ["psycopg2-binary>2.9.4", "SQLAlchemy"], - "redshift": ["boto3", "psycopg2-binary>2.9.4", "SQLAlchemy"], + "postgres": ["psycopg2-binary>=2.9.9", "SQLAlchemy"], + "redshift": ["boto3", "psycopg2-binary>=2.9.9", "SQLAlchemy"], "s3": ["boto3"], "salesforce": ["simple-salesforce"], "sftp": ["paramiko"],