Skip to content

Commit

Permalink
Dropping python 3.4 support (codelucas#768)
Browse files Browse the repository at this point in the history
* Dropping python 3.4 support

* Fixing build issues

* Changed version number - incremented major version due to breaking change

* Removing pandas dependency
  • Loading branch information
Kerl1310 authored Jun 22, 2020
1 parent 1c7feb1 commit a0f7253
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
install:
- pip install -r requirements.txt coverage coveralls
- python download_corpora.py
Expand Down
2 changes: 1 addition & 1 deletion newspaper/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
__license__ = 'MIT'
__copyright__ = 'Copyright 2014, Lucas Ou-Yang'

version_info = (0, 2, 8)
version_info = (0, 3, 0)
__version__ = ".".join(map(str, version_info))
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ python-dateutil>=2.5.3
PyYAML>=3.11
requests>=2.10.0
tinysegmenter==0.3 # TODO(codelucas): Investigate making this >=0.3
tldextract>=2.0.1
tldextract>=2.0.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

setup(
name='newspaper3k',
version='0.2.8',
version='0.3.0',
description='Simplified python article discovery & extraction.',
long_description=readme,
author='Lucas Ou-Yang',
Expand Down

0 comments on commit a0f7253

Please sign in to comment.