Skip to content

Commit

Permalink
ready to bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
peloton committed Dec 1, 2017
1 parent 1b9434e commit b98a016
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ v0.x.x
=============
* Current version.

v0.6.1
=============
* Add Neil small aperture scan
* Add method to perform systematic deprojection (IGQU)
* Add App for differential pointing
* Fix bug in dealing with leap second correction.
* Allow python 3.5 & 3.6 (both code and Travis fixed)
* Allow image in interactive ipython to be shown
* Completely remove weave - never used in practice (use fortran instead for speed-up)

v0.6.0
=============
* Add HWP demodulation (in addition to pair difference) to estimate I, Q, and U from timestreams.
Expand Down
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ def configuration(parent_package='', top_path=None):


if __name__ == "__main__":
## version
version = '0.6.1'

## Download url
d_url = 'https://github.com/JulienPeloton/s4cmb/archive/{}.tar.gz'.format(
version)
# The requirements may be too stringent and older versions
# may be alright. Haven't checked.
reqs = open('requirements.txt', 'r').read().strip().splitlines()
Expand All @@ -59,9 +65,9 @@ def configuration(parent_package='', top_path=None):

setup(
configuration=configuration,
version='0.6.0',
version=version,
url='https://github.com/JulienPeloton/s4cmb',
download_url='https://github.com/JulienPeloton/s4cmb/archive/0.6.0.tar.gz',
download_url=d_url,
license='GPL-3.0',
author='Julien Peloton',
author_email='[email protected]',
Expand Down

0 comments on commit b98a016

Please sign in to comment.