Skip to content

Commit

Permalink
Update sqlalchemy requirement
Browse files Browse the repository at this point in the history
---
updated-dependencies:
- dependency-name: sqlalchemy
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 10, 2024
1 parent 1d1f988 commit f0f2d9d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ setuptools==70.0.0
simple-salesforce==1.11.6
simplejson==3.16.0
slackclient==1.3.0
sqlalchemy >= 1.4.22, != 1.4.33, < 2.0.0 # Prefect does not work with 1.4.33 and >=2.0.0 has breaking changes
sqlalchemy >= 1.4.22, != 1.4.33, < 3.0.0 # Prefect does not work with 1.4.33 and >=2.0.0 has breaking changes
suds-py3==1.4.4.1
surveygizmo==1.2.3
twilio==8.2.1
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ def main():
],
"mysql": [
"mysql-connector-python",
"sqlalchemy >= 1.4.22, != 1.4.33, < 2.0.0",
"sqlalchemy >= 1.4.22, != 1.4.33, < 3.0.0",
],
"newmode": ["newmode"],
"ngpvan": ["suds-py3"],
"mobilecommons": ["bs4"],
"postgres": [
"psycopg2-binary>=2.9.9",
"sqlalchemy >= 1.4.22, != 1.4.33, < 2.0.0",
"sqlalchemy >= 1.4.22, != 1.4.33, < 3.0.0",
],
"redshift": [
"boto3",
"psycopg2-binary>=2.9.9",
"sqlalchemy >= 1.4.22, != 1.4.33, < 2.0.0",
"sqlalchemy >= 1.4.22, != 1.4.33, < 3.0.0",
],
"s3": ["boto3"],
"salesforce": ["simple-salesforce"],
Expand All @@ -67,7 +67,7 @@ def main():
"ssh": [
"sshtunnel",
"psycopg2-binary>=2.9.9",
"sqlalchemy >= 1.4.22, != 1.4.33, < 2.0.0",
"sqlalchemy >= 1.4.22, != 1.4.33, < 3.0.0",
],
}
extras_require["all"] = sorted({lib for libs in extras_require.values() for lib in libs})
Expand Down

0 comments on commit f0f2d9d

Please sign in to comment.