Merge pull request #7396 from ThomasWaldmann/improve-platformdirs-docs

clarify platformdirs requirements, fixes #7393
This commit is contained in:
TW 2023-03-01 17:24:14 +01:00 committed by GitHub
commit 8027c7b284
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,8 @@ setup_requires =
install_requires = install_requires =
msgpack >=1.0.3, <=1.0.4 msgpack >=1.0.3, <=1.0.4
packaging packaging
platformdirs >=3.0.0, <4.0.0 platformdirs >=3.0.0, <4.0.0; sys_platform == 'darwin' # for macOS: breaking changes in 3.0.0,
platformdirs >=2.6.0, <4.0.0; sys_platform != 'darwin' # for others: 2.6+ works consistently.
argon2-cffi argon2-cffi
tests_require = tests_require =
pytest pytest