allow platformdirs 4, fixes #7950

This commit is contained in:
Thomas Waldmann 2023-11-27 17:12:50 +01:00
parent 6a5feaffac
commit 0e7b87c1ba
No known key found for this signature in database
GPG Key ID: 243ACFA951F78E01
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ license = {text="BSD"}
dependencies = [
"msgpack >=1.0.3, <=1.0.7",
"packaging",
"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.
"platformdirs >=3.0.0, <5.0.0; sys_platform == 'darwin'", # for macOS: breaking changes in 3.0.0,
"platformdirs >=2.6.0, <5.0.0; sys_platform != 'darwin'", # for others: 2.6+ works consistently.
"argon2-cffi",
]