From f95ae79cfff174ba5379d7ac354ea75f4510cb4c Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sat, 22 May 2021 15:25:07 -0400 Subject: [PATCH] Officially pin to python 3.9+ The numba stuff was resolved re: https://github.com/numba/numba/issues/6345#issuecomment-775873609 Resolves #126 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 76246e56..457032dc 100755 --- a/setup.py +++ b/setup.py @@ -77,7 +77,7 @@ setup( #'kivy', see requirement.txt; using a custom branch atm ], tests_require=['pytest'], - python_requires=">=3.7", # literally for ``datetime.datetime.fromisoformat``... + python_requires=">=3.9", # literally for ``datetime.datetime.fromisoformat``... keywords=["async", "trading", "finance", "quant", "charting"], classifiers=[ 'Development Status :: 3 - Alpha', @@ -85,7 +85,7 @@ setup( 'Operating System :: POSIX :: Linux', "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.9", 'Intended Audience :: Financial and Insurance Industry', 'Intended Audience :: Science/Research', 'Intended Audience :: Developers',