Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
adbar committed Jun 2, 2020
1 parent 4944413 commit 6416fb4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion trafilatura/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6416fb4

Please sign in to comment.