Dropping python 3.4 support (#768)

* Dropping python 3.4 support

* Fixing build issues

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

* Removing pandas dependency
This commit is contained in:
Kyle Jones
2020-06-22 21:38:44 +01:00
committed by GitHub
parent 1c7feb1c55
commit a0f725333a
4 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -7,5 +7,5 @@ __author__ = 'Lucas Ou-Yang'
__license__ = 'MIT'
__copyright__ = 'Copyright 2014, Lucas Ou-Yang'
version_info = (0, 2, 8)
version_info = (0, 3, 0)
__version__ = ".".join(map(str, version_info))

View File

@@ -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

View File

@@ -47,7 +47,7 @@ with codecs.open('README.rst', 'r', 'utf-8') as f:
setup(
name='newspaper3k',
version='0.2.8',
version='0.3.0',
description='Simplified python article discovery & extraction.',
long_description=readme,
author='Lucas Ou-Yang',