From 95ebe1157fe44bca2399dbeda246d4f116fea22c Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 19 Jun 2024 10:16:11 +0200 Subject: [PATCH] chore: replace requests with dulwich in dependencies Swapped out `requests` for `dulwich` in dependencies to better handle Git repository interactions. This change ensures more efficient and specialized Git operations within the project. No changes to functionality expected. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6ab818c..3a91306 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] -dependencies = ["requests", "flask", "markdown2[all]"] +dependencies = ["dulwich", "flask", "markdown2[all]"] [project.scripts] gitcloak = "gitcloak.app:main"