Update deps

This commit is contained in:
~noodlez1232 2024-04-13 20:04:57 -07:00
parent b965f74a10
commit 0bba806530

View file

@ -15,11 +15,11 @@ classifiers = [
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
] ]
dependencies = [ dependencies = [
"yt-dlp==2024.*", "yt-dlp==2024.04.09",
"colorama==0.4.*", "colorama~=0.4",
"mergedeep==1.3.*", "mergedeep~=1.3",
"mediafile==0.12.*", "mediafile~=0.12",
"PyYAML==6.0.*", "PyYAML~=6.0",
] ]
urls = { Homepage = "https://github.com/jmbannon/ytdl-sub" } urls = { Homepage = "https://github.com/jmbannon/ytdl-sub" }
@ -42,24 +42,24 @@ where = ["src"]
[project.optional-dependencies] [project.optional-dependencies]
test = [ test = [
"coverage[toml]==6.3.*", "coverage[toml]~=6.3",
"pytest==7.1.*", "pytest~=7.2",
"pytest-rerunfailures==14.0", "pytest-rerunfailures~=14.0",
] ]
lint = [ lint = [
"black==23.*", "black~=24.3",
"isort==5.*", "isort~=5.13",
"pylint==2.*", "pylint~=3.1",
] ]
docs = [ docs = [
"sphinx==7.*", "sphinx~=7.0",
"sphinx-rtd-theme==2.*", "sphinx-rtd-theme~=2.0",
"sphinx-book-theme==1.*", "sphinx-book-theme~=1.0",
] ]
build = [ build = [
"build", "build~=1.2",
"twine", "twine~=5.0",
"pyinstaller", "pyinstaller~=6.5",
] ]
[project.scripts] [project.scripts]
ytdl-sub = "ytdl_sub.main:main" ytdl-sub = "ytdl_sub.main:main"