forked from Meiqia/serpextract
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Meiqia#6 from Parsely/feature/python3
Add Python 3 support
- Loading branch information
Showing
13 changed files
with
4,334 additions
and
4,395 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ build | |
dist | ||
serpextract.egg-info | ||
.DS_Store | ||
docs/_build | ||
docs/_build | ||
.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
from serpextract import * | ||
__version__ = '0.2.9' | ||
from __future__ import absolute_import | ||
|
||
from .serpextract import * | ||
|
||
__version__ = '0.3.0' |
Oops, something went wrong.