From d13606b6dc2c207be6dea89a2c3e713c18a574b8 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 1 May 2020 14:37:23 -0700 Subject: [PATCH] modify dependencies for easier packaging into Fedora --- changelog.txt | 3 +++ jc/cli.py | 2 +- requirements.txt | 3 +-- setup.py | 5 ++--- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index 7793908b..52516a53 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ jc changelog +20200501 v1.10.7 +- Requirements modifications for Fedora RPM packaging requirements + 20200420 v1.10.6 - Remove homebrew shim references from du osx tests diff --git a/jc/cli.py b/jc/cli.py index fa398aab..1aab30be 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -18,7 +18,7 @@ import jc.utils class info(): - version = '1.10.6' + version = '1.10.7' description = 'jc cli output JSON conversion tool' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' diff --git a/requirements.txt b/requirements.txt index c5b92888..8ad5147f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,3 @@ -ifconfig-parser>=0.0.5 ruamel.yaml>=0.15.0 xmltodict>=0.12.0 -Pygments>=2.5.2 +Pygments>=2.4.2 diff --git a/setup.py b/setup.py index d25ea1b2..6e5cf5fa 100755 --- a/setup.py +++ b/setup.py @@ -5,15 +5,14 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.10.6', + version='1.10.7', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='This tool serializes the output of popular command line tools and filetypes to structured JSON output.', install_requires=[ - 'ifconfig-parser>=0.0.5', 'ruamel.yaml>=0.15.0', 'xmltodict>=0.12.0', - 'Pygments>=2.5.2' + 'Pygments>=2.4.2' ], license='MIT', long_description=long_description,