From 271d8bee2ec4385d656838d99a19e367c8d715b0 Mon Sep 17 00:00:00 2001 From: Langenfeld Date: Thu, 18 Jan 2024 10:18:42 +0100 Subject: [PATCH] fix: add immutabledict to setup --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 02202d0..0c1c05a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md") as readme_file: setup_args = dict( name="py-gitea", - version="0.2.7", + version="0.2.8", description="A python wrapper for the Gitea API", long_description_content_type="text/markdown", long_description=README, @@ -20,7 +20,7 @@ setup_args = dict( install_requires = [ "requests", - "frozendict", + "immutabledict", ] extras_require = {"test": ["pytest"]}