There was an error while loading. Please reload this page.
1 parent 937e164 commit ddcf9ebCopy full SHA for ddcf9eb
2 files changed
.github/workflows/ci.yml
@@ -56,7 +56,8 @@ jobs:
56
run: |
57
python -m pip show wrf-python
58
python -m pip show --files wrf-python
59
- installed_files="$(python -m pip show --files wrf-python | grep -v :)"
+ prefix="$(python -m pip show --files six | grep Location: | cut -f2 -d' ')"
60
+ installed_files="$(python -m pip show --files wrf-python | sed -E -e "/\\w+:/ d" -e "/^\s+/ s|^ |${prefix}/|g")"
61
ls -l ${installed_files}
62
file ${installed_files}
63
ldd ${installed_files}
build_envs/environment.yml
@@ -3,7 +3,7 @@ name: wrf_python_build
3
channels:
4
- conda-forge
5
dependencies:
6
- - python>=3.9, <3.12
+ - python>=3.9, <3.13
7
- compilers
8
- basemap
9
- cartopy
@@ -17,4 +17,5 @@ dependencies:
17
- sphinx_rtd_theme
18
- wrapt
19
- xarray
20
-
+ - build
21
+ - pip
0 commit comments