summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-08-21 10:41:23 +0200
committerGitHub <noreply@github.com>2021-08-21 10:41:23 +0200
commitad97338d8cadf752036498ebc724c179f61be33d (patch)
treed92e4f45c76c7e3d7f37e1f8fd7cb5ff6632ead1 /setup.cfg
parentba00fb283378fdeb58c4e2e541be711420d96849 (diff)
downloadpylint-git-ad97338d8cadf752036498ebc724c179f61be33d.tar.gz
Migrate from ``appdirs`` to ``platformdirs`` (#4887)
* Migrate from appdirs to platformdirs Closes #4886
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg6
1 files changed, 3 insertions, 3 deletions
diff --git a/setup.cfg b/setup.cfg
index b04fcf1f2..bdf0a8743 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -42,7 +42,7 @@ project_urls =
[options]
packages = find:
install_requires =
- appdirs>=1.4.0
+ platformdirs>=2.0.0
astroid>=2.7.2,<2.8 # (You should also upgrade requirements_test_min.txt)
isort>=4.2.5,<6
mccabe>=0.6,<0.7
@@ -75,7 +75,7 @@ markers =
[isort]
multi_line_output = 3
line_length = 88
-known_third_party = appdirs, astroid, sphinx, isort, pytest, mccabe, six, toml
+known_third_party = platformdirs, astroid, sphinx, isort, pytest, mccabe, six, toml
include_trailing_comma = True
skip_glob = tests/functional/**,tests/input/**,tests/extensions/data/**,tests/regrtest_data/**,tests/data/**,astroid/**,venv/**
src_paths = pylint
@@ -83,7 +83,7 @@ src_paths = pylint
[mypy]
scripts_are_modules = True
-[mypy-appdirs]
+[mypy-platformdirs]
ignore_missing_imports = True
[mypy-astroid.*]