From 6416fb4088e4cea9ee3ddbb5aacd60b61aac6520 Mon Sep 17 00:00:00 2001 From: Adrien Barbaresi Date: Tue, 2 Jun 2020 18:40:28 +0200 Subject: [PATCH] version bump --- setup.py | 8 ++++---- trafilatura/__init__.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 3c3df26b..c2669ce8 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def readme(): setup( name='trafilatura', - version='0.4.1', + version='0.5.0', description='Downloads web pages, scrapes main text and comments while preserving some structure, and converts to TXT, CSV, XML & TEI-XML', long_description=readme(), classifiers=[ @@ -68,12 +68,12 @@ def readme(): include_package_data=True, python_requires='>=3.4', install_requires=[ - 'htmldate >= 0.6.2', + 'htmldate >= 0.6.3', 'justext >= 2.2.0', 'lxml == 4.3.5; python_version == "3.4"', - 'lxml >= 4.4.2; python_version > "3.4"', + 'lxml >= 4.5.1; python_version > "3.4"', 'requests == 2.21.0; python_version == "3.4"', - 'requests >= 2.22.0; python_version > "3.4"', + 'requests >= 2.23.0; python_version > "3.4"', 'readability-lxml >= 0.7.1', ], extras_require=extras, diff --git a/trafilatura/__init__.py b/trafilatura/__init__.py index 4ecdf4f4..4a1f3498 100644 --- a/trafilatura/__init__.py +++ b/trafilatura/__init__.py @@ -8,7 +8,7 @@ __author__ = 'Adrien Barbaresi and contributors' __license__ = 'GNU GPL v3+' __copyright__ = 'Copyright 2019-2020, Adrien Barbaresi' -__version__ = '0.4.1' +__version__ = '0.5.0' # imports import logging