This repository was archived by the owner on Jun 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Develop #982
Open
lusi1990
wants to merge
68
commits into
binux:master
Choose a base branch
from
lusi1990:develop
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Develop #982
Changes from 59 commits
Commits
Show all changes
68 commits
Select commit
Hold shift + click to select a range
49bdadf
Changes pycurl version
6068992
update
858b92a
修复 express 等没有安装的问题
3da32f7
isort pyspider
7a8f586
isort pyspider
6fa962c
review
0838460
review
2f39bc3
update python version
1fcdb9a
update elasticsearch version
32a2d01
add requirements for company
b0c48a5
update seadaka requirements
fec39cf
Merge branch 'release/v0.3.11'
6f7e50f
Merge tag 'v0.3.11' into develop
41029d6
update click version
fe0cd4f
update lxml version
ddfe171
update psycopg2 version
436c5e6
修改 gcd 过时方法
34a2896
Merge remote-tracking branch 'origin/develop' into develop
05bca89
update getargspec to getfullargspec
55a0a72
pprint 使用 buildin
3ff7f85
review
d2dc41b
review
397dff4
update
c0126f8
update
a84149e
raname list_io
90a98eb
remove "encoding: utf-8" line
4e421a0
review libs
3e77df5
review
4178546
review
eb4c3b7
sort import
1212cad
review
297aa32
update
9512717
update requirements
2a9b2d8
Merge branch 'develop' into bugfix/fix_3.9
0bceaf9
update
7b783b2
update
906cc6f
update
e246a9a
update
08c2f0a
update
a241037
Merge branch 'develop' into bugfix/fix_3.9
7d52a7d
update flask flask-login Werkzeug version
9b03abc
update
08e2228
update dependents
7b2cf03
update dependents
e82c1f3
update dependents
59ed77e
fix bugs
cc7db5c
update
0a7b95d
update
9270501
remove unused import
20b65ad
remove xmlrpclib
d7d24f9
review
b80f497
Merge branch 'bugfix/fix_3.9' into develop
522632c
update
b7deb5e
Merge branch '0.4.0release'
913a0a2
Merge tag '0.4.0release' into develop
97ec8bb
rename LICENSE file name
cf1e1eb
update
348c003
update
4940ece
Merge branch 'fix_readme' into develop
22db274
update
500b2cf
update
ec1f8e9
update pika,kombu, amqp, vine versions
lusi1990 4be7a96
upgrade elasticsearch version
lusi1990 18808be
upgrade elasticsearch version
lusi1990 3c0cad6
update Dockerfile
lusi1990 7181538
review
d42be29
downgrade es version
c74b1a1
downgrade es version
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -36,4 +36,4 @@ nosetests.xml | |
| .mr.developer.cfg | ||
| .project | ||
| .pydevproject | ||
| .idea | ||
| config.json | ||
This file contains hidden or 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
File renamed without changes.
This file contains hidden or 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 hidden or 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 @@ | ||
| version: "3.7" | ||
| version: "3.3" | ||
|
|
||
| # replace /path/to/dir/ to point to config.json | ||
|
|
||
|
|
||
This file contains hidden or 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,24 +1,25 @@ | ||
| #!/usr/bin/env python | ||
| # -*- encoding: utf-8 -*- | ||
| # vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8: | ||
| # Author: Binux<roy@binux.me> | ||
| # http://binux.me | ||
| # Created on 2015-11-10 01:31:54 | ||
|
|
||
| import sys | ||
| from unittest.mock import MagicMock | ||
|
|
||
| from recommonmark.parser import CommonMarkParser | ||
|
|
||
|
|
||
| class Mock(MagicMock): | ||
| @classmethod | ||
| def __getattr__(cls, name): | ||
| return Mock() | ||
| return Mock() | ||
|
|
||
| MOCK_MODULES = ['pycurl', 'lxml', 'psycopg2'] | ||
| sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES) | ||
|
|
||
| source_parsers = { | ||
| '.md': CommonMarkParser, | ||
| '.md': CommonMarkParser, | ||
| } | ||
|
|
||
| source_suffix = ['.rst', '.md'] |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't your package in base docker image, you could create another Dockerfile that base on this image while install your additional dependency.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for that, I remove it.