Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AMAROC-818 fix versions #128

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- [regDaniel, 2024-04-09] Add flag for clouds above (MSA + MSA_HIT_BUFFER) and allow for NSC in METAR message.
- [fpavogt, 2024-03-26] Add option to reset only a single parameter.
### Fixed:
- [regDaniel, 2024-06-24] Restrict Pandas and numpy versions to < 2.0 in setup.py.
- [srethore, 2024-04-23] Fix static types issues.
- [regDaniel, 2024-04-23] Fix deprecated github actions worklflow file
- [fpavogt, 2024-04-17] Fix #119
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
python_requires='>=3.9.0',
install_requires=[
"matplotlib >= 3.7.2",
"numpy >= 1.20.3",
"numpy >= 1.20.3, < 2.0",
"scikit-learn >= 1.2.0",
"scipy >= 1.7.3",
"statsmodels",
Expand Down