diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e95a04e5b..d6ad0bed1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,7 @@ on: - '**.c' - '**.h' - '**.yml' + - '**.toml' - '**.cfg' - '**.ini' - 'requirements.d/*' @@ -23,6 +24,7 @@ on: - '**.c' - '**.h' - '**.yml' + - '**.toml' - '**.cfg' - '**.ini' - 'requirements.d/*' diff --git a/pyproject.toml b/pyproject.toml index 22890d7157..c3df9da0b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", ]