Skip to content

Commit 989abab

Browse files
committed
switched from appdirs to platformdirs
1 parent 167aa2e commit 989abab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers = [
2727
]
2828
dynamic = ["version"]
2929
requires-python = ">=3.7"
30-
dependencies = ["requests", "tqdm>=4.40.0", "appdirs", "packaging"]
30+
dependencies = ["requests", "tqdm>=4.40.0", "platformdirs", "packaging"]
3131

3232
[project.urls]
3333
Repository = "https://github.com/python-ffmpegio/python-ffmpeg-downloader"

src/ffmpeg_downloader/_backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from os import listdir, path, name as os_name, getcwd, makedirs
22
from shutil import rmtree, move, copyfile
33
import sys
4-
from appdirs import user_data_dir
4+
from platformdirs import user_data_dir
55
from packaging.version import Version
66
from tempfile import TemporaryDirectory, mkdtemp
77
import subprocess as sp

0 commit comments

Comments
 (0)