binux
e9cda9aa43
improve couchdb allow empty username password
2020-07-26 20:15:35 -07:00
binux
3e261d356b
fix test break because couchdb failing to start
2020-07-26 16:20:28 -07:00
Keith Tunstead
0e3eaf4253
removed python 3.8 from setup.py
2019-11-07 09:45:08 +01:00
Keith Tunstead
1e3e1bf03c
removed beanstalkc
2019-11-06 17:24:27 +01:00
Keith Tunstead
473fe14832
upgraded pika
2019-10-25 15:27:07 +02:00
Keith Tunstead
bf3e62e80e
upgraded pymongo
2019-10-25 15:03:49 +02:00
Keith Tunstead
233df4c9a6
sqlalchemy upgrade
2019-10-25 09:28:15 +02:00
Keith Tunstead
b9d30778ff
sqlalchemy upgrade
2019-10-25 08:34:19 +02:00
Keith Tunstead
cfaf24bce0
upgraded sqlAlchemy
2019-10-25 08:10:57 +02:00
Keith Tunstead
4a41f04f44
upgrade python-six
2019-10-24 13:16:35 +02:00
Keith Tunstead
dcbf6dff62
port to python 3.6
2019-10-24 13:10:55 +02:00
binux
0d65272b8e
fix setup.py test for py3.3
2019-02-23 16:23:49 -08:00
binux
4a5d243840
fix build for 3.3
2019-02-23 15:50:38 -08:00
Roy Binux
734d79a4b3
lib version fix ( #775 )
...
* lib version fix
* fix typo, fix httpbin version for python2.6
* pyquery version for python2.6
2018-03-14 21:28:59 -07:00
hackty
f8f6b2f931
support redis 3.x in cluster mode for message queue
2017-06-14 01:00:35 +08:00
binux
99e4cd56a7
fix test for python2.6
2017-04-18 22:29:23 +01:00
binux
8bd2ae4f34
I hate these libs
2016-10-30 00:40:52 +01:00
binux
387bbf4264
wsgidav drop support for Python 2.6 add support for python 3
...
https://github.com/mar10/wsgidav/blob/master/CHANGELOG.md#200--2016-10-02
2016-10-22 16:01:38 +01:00
eromoe
25baebed6b
fix install error
2016-09-23 21:41:56 +08:00
binux
e83818f3ed
splash local test passed, reraise traceback info in respond obj
2016-09-12 22:40:06 +01:00
binux
9d92b29caa
fix test fail: disable lazy_limit for message queue test test_30_full
2016-08-28 14:15:28 +01:00
binux
0e1888b7d4
elasticsearch-py broken in version 2.4.0
2016-08-17 23:16:06 +01:00
binux
1aabdf56c9
Fix the python3 broken test for amqp
...
related issue: https://github.com/celery/py-amqp/issues/91
2016-06-05 12:05:38 +01:00
binux
dfd0414517
fix version check again
2016-06-05 04:19:39 +01:00
binux
d251763a0d
fix version check, add docs for cancel
2016-06-05 03:23:45 +01:00
binux
a80e174589
add cancel task, ampq droped python2.6 support for >=2.0
2016-06-05 03:17:26 +01:00
binux
327536a7d5
specify minimum version for six, some os pre-installed old version may
...
cause scheduler cannot start issue.
2016-05-07 21:26:48 +01:00
binux
55b0b1f8b6
add elasticsearch.projectdb
2016-01-17 21:14:49 +00:00
binux
febc155b76
Revert "running webui in gunicorn"
...
This reverts commit f409599fed
.
cannot pass test due to gunicorn will fork more process, which is not
compatible with pyspider.run
2016-01-09 16:16:26 +00:00
binux
f409599fed
running webui in gunicorn
2016-01-09 16:13:38 +00:00
binux
0e4f4fec37
mongodb support for pymongo 3.0
2015-11-21 17:17:23 +00:00
binux
583dfd1616
add postgresql support to docker, try catch for postgresql
2015-09-29 20:56:40 +01:00
binux
617c94b86c
add easywebdav for test
2015-06-04 10:37:05 +08:00
binux
3abe6191d3
drop requirements.txt
2015-06-03 17:08:07 +08:00
binux
708b004459
use high level interface kumbu to connect to multipul queues
2015-05-22 23:34:53 +08:00
binux
08895aca85
add redis queue
2015-04-28 00:07:45 +08:00
binux
0b57d63543
the API and behavior changed a lot in pymongo 3.0, drop it
2015-04-11 16:07:06 +08:00
binux
d463f8a1c5
remove the version requirement of six
2015-02-18 16:19:51 +08:00
binux
1e06a83cc3
remove unnecessary version require of lxml
2015-02-04 17:06:13 +08:00
binux
fc2bb5fc28
change Development Status to Beta
2015-01-11 13:41:07 +08:00
binux
67f00ca9b2
add phantomjs in run.py
2015-01-03 22:50:30 +08:00
binux
150d87b261
running test with setup.py test
2014-12-27 12:13:08 +08:00
binux
5b3a2212cc
sqlalchemy avalable for python3
2014-12-15 02:14:57 +08:00
binux
b765db838a
add py33 py34 for readme, travis
2014-12-14 23:54:53 +08:00
binux
b5027545dd
six first commit, make sqlite database test passed
...
fixed:
absolute_import
from six.moves.urllib import parse as urlparse
thread.get_ident() -> threading.current_thread().ident
basestring -> six.string_types
__metaclass__ -> add_metaclass
UserDict.DictMixin -> collections.Mapping (and support for new dict)
division
StringIO -> BytesIO
print_function
unicode -> six.text_type
__builtins__ -> six.moves.builtins
reload -> six.reload_module
dict.iteritems() -> six.iteritems(dict)
dict.iterkeys() -> for k in dict
dict.values() -> list(six.itervalues(dict))
dict.itervalues() -> six.itervalues(dict)
raise exc_type, exc_value, tb -> six.reraise(exc_type, exc_value, tb)
2014-12-13 22:47:13 +08:00
binux
1217eae3b7
fix sqlalchemy bug of wrong params of Float(16, 4)
...
fix bug of "<type 'exceptions.TypeError'>:dictionary key must be string"
for xmlrpclib
update requirement
add more tests for database returned data fileds
2014-12-05 00:33:40 +08:00
binux
a5b4f7886b
fix webui static and template files for setup.py
2014-11-25 01:08:51 +08:00
binux
1e69d8800c
update setup.py add programming language
2014-11-25 00:02:33 +08:00
binux
e254a3f88c
move run.py to pyspider
2014-11-24 23:16:31 +08:00
binux
0b540dc23f
add setup.py
2014-11-24 23:08:39 +08:00