jaraco / keyring

MIT License
1.24k stars 156 forks source link

issue with condition in py310compat.py #584

Closed salahbsmdz closed 2 years ago

salahbsmdz commented 2 years ago

Describe the bug Based on setup.cfg importlib_metadata is required for python < 3.10 so the condition in py310compat.py should be sys.version_info >= (3, 10)

Additional context 1f6d925

jaraco commented 2 years ago

Sorry, but it's not a bug. I prefer the simpler syntax. There's no version == (3, 10), so adding equality comparison is pointless.