Skip to content

Commit

Permalink
Make serpextract play nice with Python 3 and update search engine list
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-blanchard committed Jan 6, 2016
1 parent 606cabb commit f9bb255
Show file tree
Hide file tree
Showing 12 changed files with 4,330 additions and 4,393 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ build
dist
serpextract.egg-info
.DS_Store
docs/_build
docs/_build
.cache
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
language: python
python:
- "2.7"
- 2.7
- 3.3
- 3.4
install:
- pip install -r requirements.txt --use-mirrors
script: nosetests
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
recursive-exclude tests *
include *.txt
include *.rst
include serpextract/search_engines.pickle
include serpextract/search_engines.pickle*
7 changes: 4 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
iso3166>=0.4
nose==1.3.0
coverage==3.6
nose>=1.3.0
coverage>=3.6
pylru>=1.0.3
tldextract==1.2
tldextract>=1.2
six
7 changes: 5 additions & 2 deletions serpextract/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
from serpextract import *
__version__ = '0.2.10'
from __future__ import absolute_import

from .serpextract import *

__version__ = '0.2.11'
Loading

0 comments on commit f9bb255

Please sign in to comment.