Skip to content

Commit c7c211e

Browse files
authored
Merge pull request #114 from astropy/dev
v2.1.13
2 parents 41b2f32 + 6df27c4 commit c7c211e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
author = 'Matthew Hosek Jr, Jessica R. Lu, Casey Y. Lam'
2626

2727
# The short X.Y version
28-
version = '2.1.12'
28+
version = '2.1.13'
2929
# The full version, including alpha/beta/rc tags
30-
release = '2.1.12'
30+
release = '2.1.13'
3131

3232

3333

docs/contributors.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,6 @@ Winston Zhang -- bugfix to make redlaw paths correct regardless of
3636
what operating system is used
3737

3838
Sage Hironaka Remulla -- added Rubin Observatory filters
39+
40+
Lingfeng Wei -- bugfix to improve creation of iso_dir in IsochronePhot
41+
(mkdir to makedirs)

spisea/synthetic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ def __init__(self, logAge, AKs, distance,
964964

965965
# Make the iso_dir, if it doesn't already exist
966966
if not os.path.exists(iso_dir):
967-
os.mkdir(iso_dir)
967+
os.makedirs(iso_dir)
968968

969969
# Make and input/output file name for the stored isochrone photometry.
970970
# For solar metallicity case, allow for legacy isochrones (which didn't have

0 commit comments

Comments
 (0)