Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

bump dependencies #53

Merged
merged 2 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ description = "FastAPI server to serve GitHub bot that synchronizes issues from
dynamic = ["version"]

dependencies = [
"fastapi==0.109.1",
"pyyaml==6.0.0",
"fastapi==0.115.6",
"pyyaml==6.0.2",
"pygithub==1.59.0",
"uvicorn[standard]==0.22.0",
"load_dotenv==0.1.0",
Expand All @@ -39,4 +39,4 @@ deploy = [
]

[tool.mypy]
exclude = "tests"
exclude = "tests"
2 changes: 1 addition & 1 deletion tests/unit/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def _get_json(file_name):


def test_hash_validation():
data_hash = "sha256=38be3341f7b03bb234534be165ce4444d52bd95e798f547cabb1622db3628caa"
data_hash = "sha256=7127498186b8a9b282a54b72a954151d98681416693e07ea46e3a3eb960ddb42"
beliaev-maksim marked this conversation as resolved.
Show resolved Hide resolved
response = client.post(
"/",
json=_get_json("comment_created_by_bot.json"),
Expand Down
Loading