Skip to content

Commit 80c86ee

Browse files
authored
Added sqs extra (only) (#373)
1 parent eb5c1a6 commit 80c86ee

File tree

2 files changed

+141
-5
lines changed

2 files changed

+141
-5
lines changed

poetry.lock

Lines changed: 134 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,14 @@ search = ':Version: {current_version}'
7474
replace = ':Version: {new_version}'
7575

7676
[tool.poetry.dependencies]
77+
python = ">=3.8,<4.0"
7778
celery = { version = "*" }
7879
redis = { version = "*", optional = true }
7980
python-memcached = { version = "*", optional = true }
80-
python = ">=3.8,<4.0"
81+
boto3 = { version = "*", optional = true }
82+
botocore = { version = "*", optional = true }
83+
pycurl = { version = "*", optional = true }
84+
urllib3 = { version = "*", optional = true }
8185
tenacity = ">=8.5.0"
8286
pytest-docker-tools = ">=3.1.3"
8387
docker = "^7.1.0"
@@ -86,9 +90,10 @@ setuptools = ">=71.1.0"
8690
debugpy = "^1.8.2"
8791

8892
[tool.poetry.extras]
89-
all = ["redis", "python-memcached"]
93+
all = ["redis", "python-memcached", "boto3", "botocore", "pycurl", "urllib3"]
9094
redis = ["redis"]
9195
memcached = ["python-memcached"]
96+
sqs = ["boto3", "botocore", "pycurl", "urllib3"]
9297

9398
[tool.poetry.group.dev]
9499

0 commit comments

Comments
 (0)