general: move assert_never to my.core.compat as it's in stdlib from 3.11
rely on typing-extensions for fallback introducing typing-extensions dependency without fallback, should be ok since it's in the top 10 of popular packages
This commit is contained in:
parent
1317914bff
commit
8834001fe7
10 changed files with 36 additions and 16 deletions
1
setup.py
1
setup.py
|
@ -5,6 +5,7 @@ from setuptools import setup, find_namespace_packages # type: ignore
|
|||
|
||||
INSTALL_REQUIRES = [
|
||||
'pytz', # even though it's not needed by the core, it's so common anyway...
|
||||
'typing-extensions', # one of the most common pypi packages, ok to depend for core
|
||||
'appdirs', # very common, and makes it portable
|
||||
'more-itertools', # it's just too useful and very common anyway
|
||||
'decorator' , # less pain in writing correct decorators. very mature and stable, so worth keeping in core
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue