Skip to content

Commit

Permalink
Set explicit minimum numpy version (1.19.0) (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhuppmann authored Jul 1, 2021
1 parent e008f62 commit 6de47cc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest-dependency.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install specific out-dated version of dependencies
# Update the package requirements when changing minimum dependency versions
# Please also add a section "Dependency changes" to the release notes
run: pip install pandas==1.1.1 matplotlib==3.2.0 iam-units==2020.4.21
run: pip install pandas==1.1.1 numpy==1.19.0 matplotlib==3.2.0 iam-units==2020.4.21

- name: Install other dependencies and package
run: pip install -e .[tests,deploy,optional-plotting,optional-io-formats,tutorials]
Expand Down
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Next Release

- [#556](https://github.com/IAMconsortium/pyam/pull/556) Set explicit minimum numpy version (1.19.0)

# Release v1.0.0

This is the first major release of the pyam package.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
REQUIREMENTS = [
"argparse",
"iam-units>=2020.4.21",
"numpy",
"numpy>=1.19.0",
"requests",
"pandas>=1.1.1",
"pint",
Expand Down

0 comments on commit 6de47cc

Please sign in to comment.