From a899f300d3bc59c84cdea5a6a1507333e3914c3e Mon Sep 17 00:00:00 2001 From: akb89 Date: Sat, 5 Jan 2019 10:58:27 +0100 Subject: [PATCH 1/2] Updated pyyaml dependency following security issue #193 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9d50911..1c86c71 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ author_email='akb@3azouz.net', long_description=long_description, long_description_content_type='text/markdown', - version='1.2.3', + version='1.2.4', url='https://gitlab.com/akb89/pyfn', download_url='https://pypi.org/project/pyfn/#files', license='MIT', @@ -40,7 +40,7 @@ }, tests_require=['pytest==3.7.4', 'pylint==2.1.1', 'pytest-cov==2.6.0', 'pydocstyle==2.1.1'], - install_requires=['PyYAML==3.13', 'mmh3==2.5.1', 'lxml==4.2.4', + install_requires=['pyyaml>=4.2b1', 'mmh3==2.5.1', 'lxml==4.2.4', 'pytz==2018.5'], classifiers=['Development Status :: 4 - Beta', 'Environment :: Console', From 5d749d8706d32b0498c47cdca1e2414f1a8448f1 Mon Sep 17 00:00:00 2001 From: akb89 Date: Sat, 5 Jan 2019 11:05:23 +0100 Subject: [PATCH 2/2] Updated dependencies and added requires.io badge --- README.md | 1 + setup.py | 10 ++++------ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7813373..2e16c38 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ [![GitHub release][release-image]][release-url] [![PyPI release][pypi-image]][pypi-url] [![Build][travis-image]][travis-url] +[![Requirements][req-image]][req-url] [![Code Coverage][coverage-image]][coverage-url] [![FrameNet][framenet-image]][framenet-url] [![MIT License][license-image]][license-url] diff --git a/setup.py b/setup.py index 1c86c71..585b9c3 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ author_email='akb@3azouz.net', long_description=long_description, long_description_content_type='text/markdown', - version='1.2.4', + version='1.2.5', url='https://gitlab.com/akb89/pyfn', download_url='https://pypi.org/project/pyfn/#files', license='MIT', @@ -38,11 +38,9 @@ 'pyfn = pyfn.main:main' ], }, - tests_require=['pytest==3.7.4', 'pylint==2.1.1', 'pytest-cov==2.6.0', - 'pydocstyle==2.1.1'], - install_requires=['pyyaml>=4.2b1', 'mmh3==2.5.1', 'lxml==4.2.4', - 'pytz==2018.5'], - classifiers=['Development Status :: 4 - Beta', + install_requires=['pyyaml>=4.2b1', 'mmh3>=2.5.1', 'lxml>=4.3.0', + 'pytz>=2018.7'], + classifiers=['Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: Education',