Skip to content

Commit 3ddf543

Browse files
authored
Merge pull request #87 from spacetelescope/0.9.10.x
Prepping for 0.9.10 release
2 parents e960aa2 + bb3eeab commit 3ddf543

File tree

7 files changed

+31278
-5
lines changed

7 files changed

+31278
-5
lines changed

LICENSE.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2018, Space Telescope Science Institute, AURA
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
* Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
* Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
* Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

MANIFEST.in

+4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
include README.rst
2+
include LICENSE.md
23

34
include RELIC-INFO
45

56
recursive-include doc *
7+
recursive-include relic *
8+
prune relic/.git
9+
prune relic/tests
610

711
prune build
812
prune doc/build

doc/source/tutorials.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ by the extinction curve:
158158
Redshift the reddened spectrum above by :math:`z = 0.23`. Then, check that the
159159
peak wavelength is indeed redder:
160160

161-
>>> sp2 = sp1.redshift(0.23)
161+
>>> sp2 = sp1.redshift(0.23) # sp2 is in PHOTLAM
162+
>>> sp2.convert('flam')
162163
>>> sp1.wave[sp1.flux == max(sp1.flux)][0]
163164
5026.7534
164165
>>> sp2.wave[sp2.flux == max(sp2.flux)][0]

0 commit comments

Comments
 (0)