Skip to content

Commit

Permalink
Merge pull request #23 from aioworkers/extras
Browse files Browse the repository at this point in the history
tool.poetry.extras for SQLAlchemy&asyncpgsa
  • Loading branch information
abogushov authored Jan 11, 2022
2 parents 0b46495 + 881007a commit 5d9655a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ packages = [
python = "^3.6"
aioworkers = ">=0.15"
asyncpg = ">=0.22.0"
# Lock sqlalchemy version to avoid this problem: https://github.com/CanopyTax/asyncpgsa/issues/114
asyncpgsa = ">=0.25.0"
SQLAlchemy = "<1.4"

[tool.poetry.dev-dependencies]
pytest = "*"
Expand All @@ -43,6 +40,15 @@ pytest-flake8 = "*"
flake8 = "*"
pyyaml = "*"
pytest-mypy = "*"
# Lock sqlalchemy version to avoid this problem: https://github.com/CanopyTax/asyncpgsa/issues/114
asyncpgsa = ">=0.25.0"
SQLAlchemy = "<1.4"

[tool.poetry.extras]
sa = [
"SQLAlchemy<1.4",
"asyncpgsa>=0.25.0",
]

[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
Expand Down

0 comments on commit 5d9655a

Please sign in to comment.