-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ 新增状态记录 ✏️ 修改错别字 ⬆️ 升级依赖包 🔥 删除多余文件
- Loading branch information
Showing
18 changed files
with
444 additions
and
197 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
This file was deleted.
Oops, something went wrong.
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,7 +1,10 @@ | ||
.PHONY: sdist upload | ||
.PHONY: clean sdist upload | ||
|
||
sdist: | ||
python setup.py sdist | ||
python setup.py sdist bdist_wheel --universa | ||
|
||
upload: | ||
twine upload dist/* | ||
python setup.py upload | ||
|
||
clean: | ||
rm -rf build scrapy_redis_sentinel.egg-info dist |
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,3 @@ | ||
scrapy | ||
redis==3.0.1 | ||
six>=1.5.2 | ||
redis-py-cluster==2.0.0 | ||
redis==3.5.3 | ||
redis-py-cluster==2.1.3 | ||
Scrapy |
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,4 @@ | |
__original_author__ = "Rolando Espinoza" | ||
__author__ = "Shi Tao" | ||
__email__ = "[email protected]" | ||
__version__ = "0.6.8" | ||
__version__ = "0.7.1" |
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,3 +1,4 @@ | ||
# -*- coding: utf-8 -*- | ||
class HashMap(object): | ||
def __init__(self, m, seed): | ||
self.m = m | ||
|
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
Oops, something went wrong.