Skip to content

Commit

Permalink
fix: avoid using specific versions of typeguard
Browse files Browse the repository at this point in the history
typeguard > 2.11.0 and 2.11.1 have problems with checking types derived from NamedTuple. Upstream issue: agronholm/typeguard#175
  • Loading branch information
MartijnLeijssen-TomTom committed Feb 19, 2021
1 parent e9cf4a5 commit 557e395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
'python-dateutil',
'PyYAML',
'setuptools',
'typeguard>=2.10,<3',
'typeguard>=2.10,<3,!=2.11.0,!=2.11.1',
),
setup_requires=(
'setuptools_scm',
Expand Down

0 comments on commit 557e395

Please sign in to comment.