From acf07a5144e9195a5553ab9925ca57fd26db4f9f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 11 May 2022 08:00:05 -0700 Subject: [PATCH] allow install on python 3.6 systems even though it is not supported --- CHANGELOG | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index b8c59a24..8fd769e5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ jc changelog 20220510 v1.19.0 (in progress) - Add git log command streaming parser - Add top -b command parser tested on linux +- Add top -b command streaming parser tested on linux - Fix asciitable-m parser to skip rows that contain column separator characters in cell data. A warning message will be printed to STDOUT unless `-q` or `quiet=True` is used. diff --git a/setup.py b/setup.py index f0ebc225..b01602c0 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setuptools.setup( license='MIT', long_description=long_description, long_description_content_type='text/markdown', - python_requires='>=3.7', + python_requires='>=3.6', url='https://github.com/kellyjonbrazil/jc', packages=setuptools.find_packages(exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']), entry_points={