Skip to content

Commit

Permalink
fix: update cryptography dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kalombos committed Sep 15, 2024
1 parent d44ea51 commit 87e2e33
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ typing-extensions = "^4.12.2"

aiopg = { version = "^1.4.0", optional = true }
aiomysql = { version = "^0.2.0", optional = true }
cryptography = { version = "^41.0.3", optional = true }
cryptography = { version = "^43.0.1", optional = true }
pytest = { version = "^7.4.1", optional = true }
pytest-asyncio = { version = "^0.21.1", optional = true }
pytest-mock = { version = "^3.14.0", optional = true }
Expand Down
1 change: 0 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ def enable_debug_log_level() -> Generator[None, None, None]:
logger.setLevel(logging.INFO)



@pytest.fixture(scope="session", autouse=True)
def event_loop() -> Generator[asyncio.AbstractEventLoop, None, None]:
loop = asyncio.get_event_loop_policy().new_event_loop()
Expand Down

0 comments on commit 87e2e33

Please sign in to comment.