agronholm / typeguard

Run-time type checker for Python
Other
1.5k stars 112 forks source link

fix: lower bound typing-extensions >= 4.6 #473

Closed ymerkli closed 1 month ago

ymerkli commented 2 months ago

Changes

Fixes https://github.com/agronholm/typeguard/issues/472

typeguard uses typing_extensions.Buffer, which was only added to typing_extenions>=4.6.0, see here.

This PR adds typing_extenions>=4.6.0 as a requirement.

Checklist

coveralls commented 2 months ago

Coverage Status

coverage: 94.139%. remained the same when pulling 76af066319fc05fcdafc4ca113121c2cd30d9d11 on ymerkli:ymerkli/lower-bound-typing-extensions into 016f8139f5a0a63147d68df9558cc5584cd2c49a on agronholm:master.

agronholm commented 1 month ago

Typeguard already has a higher typing_extensions requirement here. Besides, your PR adds it to build requirements, why?