From c1f152d8d0c77bff19659c7e062cd189be22f690 Mon Sep 17 00:00:00 2001 From: OleSTEEP Date: Sat, 28 Dec 2024 02:09:56 +0300 Subject: [PATCH] Remove strict dependencies versioning --- pyproject.toml | 12 ++++++------ requirements.txt | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f2c379f..a195225 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,10 +23,10 @@ name = "vntools" version = "2.0-dev" requires-python = ">= 3.11" dependencies = [ - "Pillow==10.3.0", - "pillow-avif-plugin==1.4.3", - "python-ffmpeg==2.0.12", - "progress==1.6", - "colorama==0.4.6", - "argparse~=1.4.0" + "Pillow>=10.3.0", + "pillow-avif-plugin>=1.4.3", + "python-ffmpeg>=2.0.12", + "progress>=1.6", + "colorama>=0.4.6", + "argparse>=1.4.0" ] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 16bd1e6..c6dd905 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -Pillow==10.3.0 -pillow-avif-plugin==1.4.3 -python-ffmpeg==2.0.12 -progress==1.6 -colorama==0.4.6 -argparse~=1.4.0 \ No newline at end of file +Pillow>=10.3.0 +pillow-avif-plugin>=1.4.3 +python-ffmpeg>=2.0.12 +progress>=1.6 +colorama>=0.4.6 +argparse>=1.4.0