Skip to content

Commit

Permalink
v0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
fpavogt committed Jun 22, 2018
1 parent e5064d8 commit cfb0ee2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
3 changes: 3 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ Changelog |last-commit|
- (?) make the obsdate an ``fc_params`` entry rather than a global variable
- (?) for time critical OBs, get the time from the OB

v0.3.5 June 2018, F.P.A. Vogt
- fixed bad bug when feeding no ``obid``

v0.3.4 June 2018, F.P.A. Vogt
- fixed missing relsize package in mplstyle
- added a check to make sure the user provides the wavelength of custom fits files
Expand Down
4 changes: 2 additions & 2 deletions docs/source/examples/gallery.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ telescope Guide Stars is 120 arcsec from any offset position.
:alt: MUSE WFM NOAO

To recreate this example finding chart, download
:download:`local_2_fcm.muse_wfm-noao.txt <./local_2_fcm.muse_wfm-noao-pm.txt>` and run::
:download:`local_2_fcm.muse_wfm-noao.txt <./local_2_fcm.muse_wfm-noao.txt>` and run::
python -m fcmaker -l -f local_2_fcm.muse_wfm-noao-pm.txt --do-png --systemtex
python -m fcmaker -l -f local_2_fcm.muse_wfm-noao.txt --do-png --systemtex


MUSE WFM-AO
Expand Down
7 changes: 5 additions & 2 deletions fcmaker/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
help='p2 user ID')

parser.add_argument('--obid', action='store', metavar='obid', #nargs='+',
#default=[None],
default=None,
help='Observing Block ID on p2')

parser.add_argument('-f', action='store', metavar='filename', nargs=1,
Expand Down Expand Up @@ -174,7 +174,10 @@
pswd = None

# What OB should we create a finding hart for ?
obids = [int(args.obid)]
if not(args.obid is None):
obids = [int(args.obid)]
else:
obids = []

# Just use the default bk_image in manual mode
if not(args.bk_image is None):
Expand Down
2 changes: 1 addition & 1 deletion fcmaker/fcmaker_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
'''

# Define the version of fcmaker
__version__ = '0.3.4'
__version__ = '0.3.5'

# Where are we located ?
fcm_dir = os.path.dirname(__file__)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='fcmaker',
version='0.3.4',
version='0.3.5',
author='F.P.A. Vogt',
author_email='[email protected]',
packages=['fcmaker',],
Expand Down

0 comments on commit cfb0ee2

Please sign in to comment.