-
Notifications
You must be signed in to change notification settings - Fork 100
Environment upgrade tidy-up #2171
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,8 +6,7 @@ | |
| [](https://www.codacy.com/app/metoppv_tech/improver?utm_source=github.com&utm_medium=referral&utm_content=metoppv/improver&utm_campaign=Badge_Coverage) | ||
| [](https://codecov.io/gh/metoppv/improver) | ||
| [](http://improver.readthedocs.io/en/latest/?badge=latest) | ||
| [](https://www.python.org/downloads/release/python-360/) | ||
| [](https://www.python.org/downloads/release/python-370/) | ||
| [](https://www.python.org/downloads/release/python-3120/) | ||
| [](https://zenodo.org/badge/latestdoi/85334761) | ||
|
|
||
| IMPROVER is a library of algorithms for meteorological post-processing and verification. | ||
|
|
@@ -22,22 +21,22 @@ install a mamba environment | |
| ``` | ||
| conda create -c conda-forge --override-channels mamba -n mamba | ||
| ``` | ||
|
|
||
| activate this mamba environment | ||
| ``` | ||
| conda activate mamba | ||
| ``` | ||
|
|
||
| install the improver environment using mamba | ||
| ``` | ||
| mamba create -c conda-forge python=3.7 improver -n improver | ||
| mamba create -c conda-forge python=3 improver -n improver | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've run this against the current conda package for improver. An environment is build using python 3.9.23, which seems to allow the improver code to work with the various pinned versions of numpy, iris, etc. that the package currently mandates. Once we update this package I assume python 3.12 will be used and the expected new packages. |
||
| ``` | ||
|
|
||
| deactivate your mamba environment | ||
| ``` | ||
| conda deactivate | ||
| ``` | ||
|
|
||
| activate your new improver environment | ||
| ``` | ||
| conda activate improver | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've let Rachael know why we had to remove this for now.