From 6329b72ee8fd71e675c9239952f485c0e33026c7 Mon Sep 17 00:00:00 2001 From: Patrick Robertson Date: Tue, 14 Jan 2025 10:50:47 +0100 Subject: [PATCH] Remove argparse from dependency list Argparse is installed by default on python>=3.2, we only support python3.10+ Ref: https://pypi.org/project/argparse/#description --- poetry.lock | 14 +------------- pyproject.toml | 1 - 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/poetry.lock b/poetry.lock index fe08eb7..628a471 100644 --- a/poetry.lock +++ b/poetry.lock @@ -149,18 +149,6 @@ doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21)"] trio = ["trio (>=0.26.1)"] -[[package]] -name = "argparse" -version = "1.4.0" -description = "Python command-line parsing library" -optional = false -python-versions = "*" -groups = ["main"] -files = [ - {file = "argparse-1.4.0-py2.py3-none-any.whl", hash = "sha256:c31647edb69fd3d465a847ea3157d37bed1f95f19760b11a47aa91c04b666314"}, - {file = "argparse-1.4.0.tar.gz", hash = "sha256:62b089a55be1d8949cd2bc7e0df0bddb9e028faefc8c32038cc84862aefdd6e4"}, -] - [[package]] name = "asn1crypto" version = "1.5.1" @@ -3174,4 +3162,4 @@ test = ["pytest (>=8.1,<9.0)"] [metadata] lock-version = "2.1" python-versions = ">=3.10,<3.13" -content-hash = "7a5be9f0580f12d85fb5d5e60814148aa3fce47e9c9e7d255977ef185245ed96" +content-hash = "f0bcb91c5efc5789e77c6da1f0afc8bbed7dcfa38ace8c9099b50e05009ae584" diff --git a/pyproject.toml b/pyproject.toml index 8eb8f76..1c1fe39 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,6 @@ classifiers = [ dependencies = [ "gspread (>=0.0.0)", - "argparse (>=0.0.0)", "beautifulsoup4 (>=0.0.0)", "tiktok-downloader (>=0.0.0)", "bs4 (>=0.0.0)",