Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
samsa -> pykafka
Browse files Browse the repository at this point in the history
  • Loading branch information
emmettbutler committed Apr 23, 2015
1 parent 33f56b9 commit a179a8b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
8 changes: 4 additions & 4 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,17 +77,17 @@ qthelp:
@echo
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/samsa.qhcp"
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/pykafka.qhcp"
@echo "To view the help file:"
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/samsa.qhc"
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/pykafka.qhc"

devhelp:
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
@echo
@echo "Build finished."
@echo "To view the help file:"
@echo "# mkdir -p $$HOME/.local/share/devhelp/samsa"
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/samsa"
@echo "# mkdir -p $$HOME/.local/share/devhelp/pykafka"
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/pykafka"
@echo "# devhelp"

epub:
Expand Down
11 changes: 5 additions & 6 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@
"""

# -*- coding: utf-8 -*-
import sys, os
import samsa
import pykafka

project = u'samsa'
copyright = u'2012, DISQUS'
version = release = samsa.__version__
project = u'pykafka'
copyright = u'2015, Parse.ly'
version = release = pykafka.__version__

extensions = ['sphinx.ext.autodoc']

Expand All @@ -33,6 +32,6 @@

html_theme = 'nature'
pygments_style = 'sphinx'
htmlhelp_basename = 'samsadoc'
htmlhelp_basename = 'pykafkadoc'

autodoc_default_flags = ['special-members', 'show-inheritance']
2 changes: 1 addition & 1 deletion pykafka/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
limitations under the License.
"""

__version__ = '0.3.11'
__version__ = '1.0.0'

from client import KafkaClient
from balancedconsumer import BalancedConsumer

0 comments on commit a179a8b

Please sign in to comment.