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

Release v8.2.0 #580

Merged
merged 9 commits into from
Jul 17, 2024
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ jobs:

- name: Fetch GAMMA
run: |
aws s3 cp s3://hyp3-software/GAMMA_SOFTWARE-20230712_ISP_DIFF_LAT.linux64_ubuntu2204.tar.gz .
tar -zxvf GAMMA_SOFTWARE-20230712_ISP_DIFF_LAT.linux64_ubuntu2204.tar.gz
aws s3 cp s3://hyp3-software/GAMMA_SOFTWARE-20240627_MSP_ISP_DIFF_LAT.linux64_ubuntu2204.tar.gz .
tar -zxvf GAMMA_SOFTWARE-20240627_MSP_ISP_DIFF_LAT.linux64_ubuntu2204.tar.gz

- name: Build, tag, and push image to Amazon ECR
uses: docker/build-push-action@v6
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/)
and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [8.2.0]
### Changed
- Upgraded to [GAMMA software](https://www.gamma-rs.ch/software) version `20240627` from `20230712`

## [8.1.4]
### Changed
* Updated versions for Python and GitHub Actions dependencies.
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN apt update \
&& apt clean \
&& rm -rf /var/lib/apt/lists/*

COPY GAMMA_SOFTWARE-20230712 /usr/local/GAMMA_SOFTWARE-20230712/
COPY GAMMA_SOFTWARE-20240627 /usr/local/GAMMA_SOFTWARE-20240627/

COPY . /hyp3-gamma/
RUN python -m pip install --upgrade pip \
Expand All @@ -55,7 +55,7 @@ SHELL ["/bin/bash", "-l", "-c"]
ENV PYTHONDONTWRITEBYTECODE=true

# GAMMA environment variables per section 1 of the Linux installation guide
ENV GAMMA_VERSION=20230712
ENV GAMMA_VERSION=20240627
ENV GAMMA_HOME=/usr/local/GAMMA_SOFTWARE-${GAMMA_VERSION}
ENV MSP_HOME=$GAMMA_HOME/MSP
ENV ISP_HOME=$GAMMA_HOME/ISP
Expand All @@ -66,6 +66,7 @@ ENV PATH=$PATH:$MSP_HOME/bin:$ISP_HOME/bin:$DIFF_HOME/bin:$LAT_HOME/bin:$DISP_HO
ENV PATH=$PATH:$MSP_HOME/scripts:$ISP_HOME/scripts:$DIFF_HOME/scripts:$LAT_HOME/scripts:$DISP_HOME/scripts
ENV OS=linux64
ENV PYTHONPATH=$GAMMA_HOME:$PYTHONPATH
ENV GDAL_PATH=/usr/bin
ENV HDF5_DISABLE_VERSION_CHECK=1

WORKDIR /home/conda/
Expand Down