Skip to content

Commit

Permalink
## [2.1.120] - 2023-08-10
Browse files Browse the repository at this point in the history
### Fixed
- added support for np.int32 for Windows by @wqcannon
- broken pyYaml package 5.4 with cython 3. Moved back to 5.3.1
  • Loading branch information
LorenzoMugnai committed Aug 11, 2023
1 parent 9f4873d commit 0978bb0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.1.120] - 2023-08-10
### Fixed
- added support for np.int32 for Windows by @wqcannon
- broken pyYaml package 5.4 with cython 3. Moved back to 5.3.1
## [2.1.118] - 2023-05-27
### Fixed
- deprecated np.float removed
Expand Down Expand Up @@ -247,6 +251,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Initial release

[Unreleased]: https://github.com/ExObsSim/ExoRad2.0
[2.1.120]: https://github.com/ExObsSim/ExoRad2-public/compare/v2.1.118...v2.1.120
[2.1.118]: https://github.com/ExObsSim/ExoRad2-public/compare/v2.1.116...v2.1.118
[2.1.116]: https://github.com/ExObsSim/ExoRad2-public/compare/v2.1.115...v2.1.116
[2.1.115]: https://github.com/ExObsSim/ExoRad2-public/compare/v2.1.114...v2.1.115
Expand Down
1 change: 1 addition & 0 deletions exorad/output/hdf5/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ def store_thing(output, key, item):
float,
int,
np.int64,
np.int32,
np.float64,
),
):
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = exorad
version = 2.1.118
version = 2.1.120
author = Lorenzo V. Mugnai, Enzo Pascale
author_email = lorenzo.mugnai@uniroma1.it
description = The generic point source radiometric model
Expand Down Expand Up @@ -35,7 +35,7 @@ install_requires =
matplotlib
mpmath
numpy
pyyaml==5.4
pyyaml==5.3.1
scipy
h5py>=3.2
hdfdict==0.3.1
Expand Down

0 comments on commit 0978bb0

Please sign in to comment.