From 13b80e0adac1ad53b2f8b3d27a63188a25f0715b Mon Sep 17 00:00:00 2001 From: Alexander Sieg Date: Wed, 8 May 2024 11:57:08 +0200 Subject: [PATCH] chore: drop argparse from dependencies argparse is part of the python standard library since python 3.2, this project is targeting at least python 3.7. https://pypi.org/project/argparse/ --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 50f1077..91be3dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,6 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "argparse", "reportlab", "reportlab_qrcode" ]