Skip to content

Commit

Permalink
add travis file, prepare for 1.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
modhurita authored and gijzelaerr committed Jan 12, 2016
1 parent a0d6348 commit 361ceb5
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 2 deletions.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: python
python:
- '2.7'
install:
- python setup.py install
script:
- true
deploy:
provider: pypi
user: gijzelaerr
password:
secure: xDkz2ilo/rG1U1dSfhAJoFXAVcmw+L0uk7DUuAtRhDh/ShpULlU9F3MPtVHo2fGmzgjVy1Joiya1iTveHdLvnwMpd10QZcygq712GjS6Z4Oum1poUwzFXfgyU97xYWoYsgfv/5n4Ae6zhMemHrp3qvDybFWJzmPPPh1GNba3pVQ=
on:
tags: true
12 changes: 12 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Next Release
Changes since v1.3.4


## General

* Remove simms from owlcat

## fitstool

* Add fucntions to stack and unstack FITS files
* Add fucntion to reoder FITS axes
2 changes: 1 addition & 1 deletion Owlcat/FitsTool.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def main():
_string = True

stack_planes(imagenames,ctype=axis if _string else None,keep_old=True,
axis=None if _string else axis,outfile=outfile,fits=True)
axis=None if _string else axis,outname=outfile,fits=True)

# Unstack FITS image
if options.unstack:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from distutils.core import setup

setup(name='owlcat',
version='1.3.3',
version='1.4.0',
description='miscellaneous utility scripts for manipulating radio interferometry data',
author='Oleg Smirnov',
author_email='Oleg Smirnov <osmirnov@gmail.com>',
Expand Down

0 comments on commit 361ceb5

Please sign in to comment.