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..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.3 +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 04655af48e..e89825ecac 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.9", "SQLAlchemy"], + "redshift": ["boto3", "psycopg2-binary>=2.9.9", "SQLAlchemy"], "s3": ["boto3"], "salesforce": ["simple-salesforce"], "sftp": ["paramiko"],