Skip to content

Commit

Permalink
Merge branch 'release-042'
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel-p committed May 10, 2021
2 parents a046aa4 + d584f74 commit 659bbc2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Change Log


## [[v0.4.2]][315] - 2021-05-10

### Changed

Fixed two issues: don't read hidden files from the `input/` folder, remove forgotten parameter that was removed in the previous release.



## [[v0.4.1]][314] - 2021-05-05

### Changed
Expand Down Expand Up @@ -887,4 +895,5 @@ ________________________________________________________________________________
[311]: https://github.com/asteca/ASteCA/issues/511
[312]: https://github.com/asteca/ASteCA/issues/509
[313]: https://github.com/asteca/ASteCA/issues/513
[314]: https://github.com/asteca/asteca/releases/tag/v0.4.1
[314]: https://github.com/asteca/asteca/releases/tag/v0.4.1
[315]: https://github.com/asteca/asteca/releases/tag/v0.4.2
2 changes: 1 addition & 1 deletion packages/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "v0.4.1"
__version__ = "v0.4.2"
3 changes: 1 addition & 2 deletions packages/data_analysis/pms_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
from astropy.stats import sigma_clipped_stats


def main(
clp, cld_i, coords, project, flag_make_plot, **kwargs):
def main(clp, cld_i, project, flag_make_plot, **kwargs):
"""
Assume that the pmRA is already corrected by the cosine of DE.
"""
Expand Down
5 changes: 3 additions & 2 deletions packages/inp/input_clusters.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ def main(mypath, file_end):
subdir = subdir0[1:]
else:
subdir = subdir0
# Don't attempt to read membership or .md files.
if not f.endswith(('_memb.dat', '.md', '.pickle')):
# Don't attempt to read certain files
if not f.endswith(('_memb.dat', '.md', '.pickle')) and not\
f.startswith('.'):
cl_files.append([mypath, input_dir, subdir, f])

# Return sorted list by cluster file name.
Expand Down

0 comments on commit 659bbc2

Please sign in to comment.