Skip to content

Commit

Permalink
fix: Constrain SQLAlchemy to <2 (#170)
Browse files Browse the repository at this point in the history
The next release of the SDK adds support for SQLAlchemy 2.0 but this
target does not seem to support it yet.

Related:

* #87
  • Loading branch information
edgarrmondragon authored Aug 8, 2023
1 parent 0c82a7f commit 53903cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name = "meltanolabs-target-postgres"
version = "0.0.0"
description = "`target-postgres` is a Singer target for Postgres, built with the Meltano SDK for Singer Targets."
authors = ["Meltano Team and Contributors"]
maintainers = ["Meltano Team and Contributors"]
authors = ["Meltano Team and Contributors <hello@meltano.com>"]
maintainers = ["Meltano Team and Contributors <hello@meltano.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://meltano.com"
Expand Down Expand Up @@ -35,6 +35,7 @@ python = "<3.12,>=3.7.1"
requests = "^2.25.1"
singer-sdk = "^0.28.0"
psycopg2-binary = "2.9.6"
sqlalchemy = "<2"
sshtunnel = "0.4.0"

[tool.poetry.dev-dependencies]
Expand All @@ -60,7 +61,7 @@ build-backend = "poetry_dynamic_versioning.backend"
# CLI declaration
target-postgres = 'target_postgres.target:TargetPostgres.cli'

[pytest]
[tool.pytest.ini_options]
pythonpath = [
"."
]
Expand Down

0 comments on commit 53903cb

Please # to comment.