Skip to content

Commit

Permalink
fixed extra dependecies (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
sabuhish authored Jul 25, 2022
1 parent faeb536 commit 8943f55
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 5 additions & 2 deletions poetry.lock

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

8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,12 @@ aiosmtplib = "^1.1.6"
pydantic = "^1.8.2"
email-validator = "^1.1.3"
blinker = "^1.5"
fakeredis = {extras = ["fakeredis"], version = "^1.8.2"}
httpx = {extras = ["httpx"], version = "^0.23.0"}
fakeredis = {extras = ["fakeredis"], version = "^1.8.2", optional = true}
httpx = {extras = ["httpx"], version = "^0.23.0", optional = true}

[tool.poetry.extras]
httpx = ["httpx"]
fakeredis = ["fakeredis"]

[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
Expand Down

0 comments on commit 8943f55

Please sign in to comment.