compatibility with Python 3.7

pull/134/head
Xavier Olive 2 years ago
parent 51222372b1
commit 9d82f9b9c9

@ -4,7 +4,12 @@
from __future__ import annotations
from typing import TypedDict
import sys
if sys.version_info < (3, 8):
from typing_extensions import TypedDict
else:
from typing import TypedDict
NA = None

@ -43,7 +43,8 @@ details = dict(
],
keywords="Mode-S ADS-B EHS ELS Comm-B",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
install_requires=["numpy", "pyzmq"],
# typing_extensions are no longer necessary after Python 3.8 (TypedDict)
install_requires=["numpy", "pyzmq", "typing_extensions"],
extras_require={"fast": ["Cython"]},
package_data={"pyModeS": ["*.pyx", "*.pxd", "py.typed"]},
scripts=["pyModeS/streamer/modeslive"],

Loading…
Cancel
Save