| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Python 3 Support
Conflicts:
kafka/producer.py
test/test_client.py
test/test_client_integration.py
test/test_codec.py
test/test_consumer.py
test/test_consumer_integration.py
test/test_failover_integration.py
test/test_producer.py
test/test_producer_integration.py
test/test_protocol.py
test/test_util.py
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
Better type errors
|
| | |
|
|/
|
|
| |
Tags applied to master will now be automatically deployed on PyPI
|
| |
|
| |
|
|\
| |
| | |
Remove 'distribute' dependency
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This dependency is unnecessary since this project now uses setuptools and
it prevents installing this package with --use-wheel, failing with this
traceback:
$ pip install --use-wheel distribute
Downloading/unpacking distribute
Downloading distribute-0.7.3-cp26-none-linux_x86_64.whl
Requirement already satisfied (use --upgrade to upgrade): setuptools>=0.7 in ./venv/lib/python2.6/site-packages (from distribute)
Cleaning up...
Exception:
Traceback (most recent call last):
File "/home/plucas/lib/python2.6/site-packages/pip/basecommand.py", line 134, in main
status = self.run(options, args)
File "/home/plucas/lib/python2.6/site-packages/pip/commands/install.py", line 241, in run
requirement_set.install(install_options, global_options, root=options.root_path)
File "/home/plucas/lib/python2.6/site-packages/pip/req.py", line 1256, in install
if req.name == 'distribute' and req.installed_version in distribute_req:
File "/home/plucas/lib/python2.6/site-packages/pip/req.py", line 390, in installed_version
return self.pkg_info()['version']
File "/home/plucas/lib/python2.6/site-packages/pip/req.py", line 357, in pkg_info
data = self.egg_info_data('PKG-INFO')
File "/home/plucas/lib/python2.6/site-packages/pip/req.py", line 293, in egg_info_data
filename = self.egg_info_path(filename)
File "/home/plucas/lib/python2.6/site-packages/pip/req.py", line 307, in egg_info_path
filenames = os.listdir(base)
OSError: [Errno 2] No such file or directory: '/home/plucas/build/distribute/pip-egg-info'
|
|/
|
|
|
|
|
|
| |
Bump version number to 0.9.1
Update readme to show supported Kafka/Python versions
Validate arguments in consumer.py, add initial consumer unit test
Make service kill() child processes when startup fails
Add tests for util.py, fix Python 2.6 specific bug.
|
|\
| |
| |
| |
| | |
Conflicts:
test/test_unit.py
|
| |\
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Conflicts:
kafka/client.py
kafka/conn.py
setup.py
test/test_integration.py
test/test_unit.py
|
| | | |
|
| |/
|/| |
|
| | |
|
| | |
|
|/
|
|
| |
Fixes #85
|
|
|
|
| |
Is there a better way to do this?
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|