Skip to content

Commit

Permalink
Bump to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Jul 3, 2014
1 parent 18debe5 commit 9e4741f
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion aiozmq/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'ZmqTransport', 'ZmqProtocol',
'version_info', 'version')

__version__ = '0.4.0'
__version__ = '0.4.1'

version = __version__ + ' , Python ' + sys.version

Expand Down
5 changes: 5 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -151,3 +151,8 @@ doctest:
$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
@echo "Testing of doctests in the sources finished, look at the " \
"results in $(BUILDDIR)/doctest/output.txt."

spelling:
$(SPHINXBUILD) -b spelling -d $(BUILDDIR)/doctrees . $(BUILDDIR)/spelling
@echo
@echo "Spelling checker messages written to $(BUILDDIR)/spelling/output.txt."
12 changes: 6 additions & 6 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,13 @@

sys.version

#sys.path.insert(0, os.path.abspath('..'))
#import aiozmq
sys.path.insert(0, os.path.abspath('..'))
import aiozmq


# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#sys.path.insert(0, os.path.abspath('.'))

# -- General configuration -----------------------------------------------------

Expand All @@ -33,7 +32,8 @@
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.viewcode', 'sphinx.ext.autodoc',
'sphinx.ext.intersphinx']
'sphinx.ext.intersphinx',
'sphinxcontrib.spelling']

intersphinx_mapping = {'python': ('http://docs.python.org/3', None),
'pyzmq': ('http://zeromq.github.io/pyzmq', None)}
Expand Down Expand Up @@ -62,8 +62,8 @@
#version = '.'.join(str(i) for i in aiozmq.version_info[:2])
# The full version, including alpha/beta/rc tags.
#release = aiozmq.__version__
version = "0.4"
release = "0.4"
version = ".".join(str(i) for i in aiozmq.version_info[0:2])
release = aiozmq.__version__


# The language for content autogenerated by Sphinx. Refer to documentation
Expand Down
3 changes: 3 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pyzmq
sphinxcontrib-spelling
pyenchant
Empty file added docs/spelling_wordlist.txt
Empty file.
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
matplotlib>=1.3.1
matplotlib
msgpack-python>=0.4.2
nose>=1.3.1
numpy>=1.8.1
Expand All @@ -15,3 +15,5 @@ coverage>=3.7
elpy
jedi
rope_py3k
sphinxcontrib.spelling
pyenchant

0 comments on commit 9e4741f

Please sign in to comment.