Skip to content

Commit

Permalink
add additional python packages to allow ioda tests
Browse files Browse the repository at this point in the history
  • Loading branch information
twsearle committed Aug 1, 2024
1 parent 98c1f0b commit e22bebe
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ci/hpccm_recipe_almalinux9.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ def gitlab_url(repo, vn):
netcdf_vn = USERARG.get('netcdf_vn', '4.9.2')
netcdfcxx_vn = USERARG.get('netcdfcxx_vn', '4.3.1')
netcdfftn_vn = USERARG.get('netcdfftn_vn', '4.6.1')
netcdf4python_vn = USERARG.get('netcdf4python_vn', '1.6.5')
numpy_vn = USERARG.get('numpy_vn', '1.26.4')
odc_vn = USERARG.get('odc_vn', '1.5.2')
openmpi_vn = USERARG.get('openmpi_vn', '4.1.5')
pycodestyle_vn = USERARG.get('pycodestyle_vn', '2.10')
Expand Down Expand Up @@ -266,6 +268,11 @@ def gitlab_url(repo, vn):
configure_opts=['--with-idxtype=long', '--without-regard-for-quality'],
)

Stage0 += pip(pip='pip3', packages=[
f"pycodestyle=={pycodestyle_vn}",
f"numpy=={numpy_vn}",
f"netcdf4=={netcdf4python_vn}",
])
Stage1 += baseimage(image='almalinux:9', _distro='rhel')
Stage1 += comment('JEDI development image with GNU and OpenMPI')
Stage1 += label(metadata={
Expand Down

0 comments on commit e22bebe

Please sign in to comment.