From 2d5d31fd4da9660d92f5116b2da7f42f8ce21051 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sun, 5 Mar 2023 19:18:09 +0900 Subject: [PATCH] Remove unused dependency `pyperclip` --- poetry.lock | 40 +++++++--------------------------------- pyproject.toml | 1 - 2 files changed, 7 insertions(+), 34 deletions(-) diff --git a/poetry.lock b/poetry.lock index c077ac9..ab5fee0 100644 --- a/poetry.lock +++ b/poetry.lock @@ -157,20 +157,6 @@ files = [ {file = "async_timeout-4.0.2-py3-none-any.whl", hash = "sha256:8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c"}, ] -[[package]] -name = "asyncio" -version = "3.4.3" -description = "reference implementation of PEP 3156" -category = "main" -optional = false -python-versions = "*" -files = [ - {file = "asyncio-3.4.3-cp33-none-win32.whl", hash = "sha256:b62c9157d36187eca799c378e572c969f0da87cd5fc42ca372d92cdb06e7e1de"}, - {file = "asyncio-3.4.3-cp33-none-win_amd64.whl", hash = "sha256:c46a87b48213d7464f22d9a497b9eef8c1928b68320a2fa94240f969f6fec08c"}, - {file = "asyncio-3.4.3-py3-none-any.whl", hash = "sha256:c4d18b22701821de07bd6aea8b53d21449ec0ec5680645e5317062ea21817d2d"}, - {file = "asyncio-3.4.3.tar.gz", hash = "sha256:83360ff8bc97980e4ff25c964c7bd3923d333d177aa4f7fb736b019f26c7cb41"}, -] - [[package]] name = "attrs" version = "22.2.0" @@ -1811,17 +1797,6 @@ files = [ [package.extras] plugins = ["importlib-metadata"] -[[package]] -name = "pyperclip" -version = "1.8.2" -description = "A cross-platform clipboard module for Python. (Only handles plain text for now.)" -category = "main" -optional = false -python-versions = "*" -files = [ - {file = "pyperclip-1.8.2.tar.gz", hash = "sha256:105254a8b04934f0bc84e9c24eb360a591aaf6535c9def5f29d92af107a9bf57"}, -] - [[package]] name = "pyproject-hooks" version = "1.0.0" @@ -2201,18 +2176,17 @@ requests = ">=2.0.1,<3.0.0" [[package]] name = "revchatgpt" -version = "3.0.9" +version = "3.1.1" description = "ChatGPT is a reverse engineering of OpenAI's ChatGPT API" category = "main" optional = false python-versions = "*" files = [ - {file = "revChatGPT-3.0.9-py3-none-any.whl", hash = "sha256:442ad0842673e800646aa42457a34f37b5fa94f12c0ede9495e7c637e2a624bd"}, - {file = "revChatGPT-3.0.9.tar.gz", hash = "sha256:4017cb56037313debdfa95ba597a8bb7aa660908ea2acf1aff9252a24628e250"}, + {file = "revChatGPT-3.1.1-py3-none-any.whl", hash = "sha256:48aa6c571d281cca4c319c03846a8e913eeef1047c7949051acfd204cd278023"}, + {file = "revChatGPT-3.1.1.tar.gz", hash = "sha256:c5b7fb1b73581511bd491dbe1b2df9363c9ce5aef297e8046ebbe400b4d5e95d"}, ] [package.dependencies] -asyncio = "*" httpx = {version = "*", extras = ["socks"]} OpenAIAuth = "0.3.2" prompt-toolkit = "*" @@ -2881,14 +2855,14 @@ multidict = ">=4.0" [[package]] name = "yt-dlp" -version = "2023.3.3" +version = "2023.3.4" description = "A youtube-dl fork with additional features and patches" category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "yt-dlp-2023.3.3.tar.gz", hash = "sha256:77fd35ed8f59b580cff5161b13dd77ee9925619a73553b7c03eb2b0adea71fb7"}, - {file = "yt_dlp-2023.3.3-py2.py3-none-any.whl", hash = "sha256:b1ae1a0571e3f1d14b893a0983fcd66faa5f896997fc6262ce00a5a880e9e6ae"}, + {file = "yt-dlp-2023.3.4.tar.gz", hash = "sha256:265d5da97a76c15d7d9a4088a67b78acd5dcf6f8cfd8257c52f581ff996ff515"}, + {file = "yt_dlp-2023.3.4-py2.py3-none-any.whl", hash = "sha256:40ca421407ce07c8fd700854fd978d58526ec6fff3468caa34ff1c7333b8dc34"}, ] [package.dependencies] @@ -2918,4 +2892,4 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "227a86cee5154dd470121d602c7fd0123970373edaca59a357610ed74a31380d" +content-hash = "0f3ac2529861908f9e2778e20176c43339a6f0319e709d561a565c80d5b98860" diff --git a/pyproject.toml b/pyproject.toml index eba246e..23e28a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,6 @@ typer = { extras = ["all"], version = "^0.7.0" } openai = "^0.26.5" pydantic = "^1.10.5" yt-dlp = "^2023.3.3" -pyperclip = "^1.8.2" [tool.poetry.scripts] aishell = "aishell:main"