Skip to content

Commit

Permalink
Added sqs extra (only) (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nusnus authored Aug 8, 2024
1 parent eb5c1a6 commit 80c86ee
Show file tree
Hide file tree
Showing 2 changed files with 141 additions and 5 deletions.
137 changes: 134 additions & 3 deletions poetry.lock

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

9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,14 @@ search = ':Version: {current_version}'
replace = ':Version: {new_version}'

[tool.poetry.dependencies]
python = ">=3.8,<4.0"
celery = { version = "*" }
redis = { version = "*", optional = true }
python-memcached = { version = "*", optional = true }
python = ">=3.8,<4.0"
boto3 = { version = "*", optional = true }
botocore = { version = "*", optional = true }
pycurl = { version = "*", optional = true }
urllib3 = { version = "*", optional = true }
tenacity = ">=8.5.0"
pytest-docker-tools = ">=3.1.3"
docker = "^7.1.0"
Expand All @@ -86,9 +90,10 @@ setuptools = ">=71.1.0"
debugpy = "^1.8.2"

[tool.poetry.extras]
all = ["redis", "python-memcached"]
all = ["redis", "python-memcached", "boto3", "botocore", "pycurl", "urllib3"]
redis = ["redis"]
memcached = ["python-memcached"]
sqs = ["boto3", "botocore", "pycurl", "urllib3"]

[tool.poetry.group.dev]

Expand Down

0 comments on commit 80c86ee

Please sign in to comment.