Skip to content

Commit

Permalink
bump version, fix image argparams
Browse files Browse the repository at this point in the history
  • Loading branch information
bennahugo committed Nov 29, 2021
1 parent 3fbc0b2 commit ae4b85f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
]

PACKAGE_NAME = 'vermeerkat'
__version__ = '2.0.0'
__version__ = '2.1.0'

setup(name = PACKAGE_NAME,
version = __version__,
Expand Down
4 changes: 2 additions & 2 deletions vermeerkat/plugins/INTROSPECT/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
"input column and output column (need not exist). "
"Available options for maskimg are the same as im, but with a first argument a mask sigma. "
"(default: '{}')".format(default_recipe))
parser.add_argument("--npix", dest="npix", default=8192,
parser.add_argument("--npix", dest="npix", default=8192, type=int,
help="Number of pixels to use in imaging (default 8192)")
parser.add_argument("--cellsize", dest="cellsize", default=1.3,
parser.add_argument("--cellsize", dest="cellsize", default=1.3, type=float,
help="Cellsize to use in imaging (default 1.3asec)")
parser.add_argument("--cal_briggs", dest="cal_briggs", default=-0.6,
help="Briggs robust to use during calibration (default -0.6)")
Expand Down

0 comments on commit ae4b85f

Please sign in to comment.