Skip to content

Commit

Permalink
Preparing release v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed Jan 9, 2017
1 parent 985fd20 commit 4586c66
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
0.9.7 (unreleased)
------------------
1.0 (2016-01-09)
----------------

- Fixed a bug in the calculation of the reduced chi^2: this should have used
the number of valid data points (valid flag 1 or 4) but instead was using
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1.2.dev'
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = '0.1.2.dev'
release = '1.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion sedfitter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from . import filter
from . import utils

__version__ = '0.9.7.dev'
__version__ = '1.0'

from .plot_helpers import set_rc_params
set_rc_params()
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

from distutils.command.build_py import build_py

from sedfitter import __version__

class SEDFitterTest(Command):

user_options = []
Expand Down Expand Up @@ -43,7 +45,7 @@ def run(self):
raise SystemExit(errno)

setup(name='sedfitter',
version='0.9.7.dev',
version=__version__,
description='SED Fitter in Python',
author='Thomas Robitaille',
author_email='thomas.robitaille@gmail.com',
Expand Down

0 comments on commit 4586c66

Please sign in to comment.