Skip to content

Commit

Permalink
Merge pull request #14 from CEA-COSMIC/develop
Browse files Browse the repository at this point in the history
Patch release 0.0.3
  • Loading branch information
sfarrens authored Jan 9, 2024
2 parents cbf4178 + 2804254 commit a1d25f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion astro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@

__all__ = ['deconvolution', 'denoising']

version_info = (0, 0, 2)
version_info = (0, 0, 3)
__version__ = '.'.join(str(c) for c in version_info)
2 changes: 1 addition & 1 deletion astro/denoising/wavelet.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def decompose(data, n_scales=4):
trans.data = data
trans.analysis()

res = np.array(trans.analysis_data, dtype=np.float)
res = np.array(trans.analysis_data, dtype=np.float64)

return res

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Set the package release version
major = 0
minor = 0
patch = 2
patch = 3
version = '.'.join(str(value) for value in (major, minor, patch))

# Global parameters
Expand Down

0 comments on commit a1d25f6

Please sign in to comment.