Skip to content

Commit

Permalink
Merge pull request #575 from Cadair/0.3
Browse files Browse the repository at this point in the history
bump version numbers
  • Loading branch information
Cadair committed Sep 20, 2013
2 parents 9565dc9 + 82cc2ad commit e30075b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Mock(object):
def __init__(self, *args, **kwargs):
for key, value in kwargs.iteritems():
setattr(self, key, value)

def __call__(self, *args, **kwargs):
return Mock()

Expand Down Expand Up @@ -61,7 +61,7 @@ def __hash__(self):
return 1

__len__ = __int__ = __long__ = __index__ = __hash__

def __oct__(self):
return '01'

Expand Down Expand Up @@ -131,7 +131,7 @@ def __complex__(self):
# 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.autodoc', 'numpydoc', 'sphinx.ext.todo',
'sphinx.ext.pngmath', 'sphinx.ext.viewcode',
'sphinx.ext.pngmath', 'sphinx.ext.viewcode',
'sphinx.ext.autosummary', 'sphinx.ext.doctest']

# Add any paths that contain templates here, relative to this directory.
Expand All @@ -157,7 +157,7 @@ def __complex__(self):
# The short X.Y version.
version = '0.3'
# The full version, including alpha/beta/rc tags.
release = '0.3.0'
release = '0.3.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -306,7 +306,7 @@ def __complex__(self):

# Autosummary
import glob
autosummary_generate = (glob.glob("reference/*.rst") +
autosummary_generate = (glob.glob("reference/*.rst") +
glob.glob("reference/*/*.rst"))

# Uncomment this to stop numpydoc from autolisting class members, which
Expand Down
2 changes: 1 addition & 1 deletion doc/source/guide/installation/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ If you are upgrading the package: ::
For those who like to download the source.
You have a range of download locations.

PyPi: `Download <https://pypi.python.org/packages/source/s/sunpy/sunpy-0.3.0.tar.gz>`_
PyPi: `Download <https://pypi.python.org/packages/source/s/sunpy/sunpy-0.3.1.tar.gz>`_

Github (tar.gz): `Download <https://github.com/sunpy/sunpy/tarball/0.3>`_

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def install(setup): #pylint: disable=W0621
sourcefiles = [join(cwd, 'sunpy', 'image', 'src', 'rot_extn.c'),
join(cwd, 'sunpy', 'image', 'src', 'transform', 'aff_tr.c')]
libs = ['m']
# -ON for compile optimise
# -ON for compile optimise
gcc_args = ['-std=c99', '-O3']
# gcc_args = ['-std=c99']

Expand Down Expand Up @@ -82,7 +82,7 @@ def install(setup): #pylint: disable=W0621
provides=['sunpy'],
url="http://www.sunpy.org/",
use_2to3=True,
version="0.3.0",
version="0.3.1",
ext_modules = [crotate] if 'crotate' in locals() else []
)

Expand Down

0 comments on commit e30075b

Please sign in to comment.