Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
8 changes: 4 additions & 4 deletions .github/jobs/setup_and_run_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

RUNNER_WORKSPACE = os.environ.get('RUNNER_WORKSPACE')
GITHUB_WORKSPACE = os.environ.get('GITHUB_WORKSPACE')
REPO_NAME = os.path.basename(RUNNER_WORKSPACE)
WS_PATH = os.path.join(RUNNER_WORKSPACE, REPO_NAME)
print(f"WS_PATH is {WS_PATH}")
REPO_NAME = os.path.basename(GITHUB_WORKSPACE)
METPLUS_DEVELOP_PATH = os.path.join(GITHUB_WORKSPACE, f"{REPO_NAME}.develop")
print(f"METPLUS_DEVELOP_PATH is {METPLUS_DEVELOP_PATH}")
print(f"GITHUB_WORKSPACE is {GITHUB_WORKSPACE}")

INPUT_CATEGORIES = sys.argv[1]
Expand Down Expand Up @@ -50,7 +50,7 @@
print(f"Output Volumes: {VOLUMES_FROM}")

VOLUME_MOUNTS = [
f'-v {WS_PATH}:{GITHUB_WORKSPACE}',
f'-v {METPLUS_DEVELOP_PATH}:{GITHUB_WORKSPACE}',
f'-v {RUNNER_WORKSPACE}/output:/data/output',
f'-v {RUNNER_WORKSPACE}/diff:/data/diff',
]
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,19 @@ jobs:
if: ${{ always() && steps.run_tests.conclusion == 'failure' }}
run: .github/jobs/save_error_logs.sh

# checkout METplus diff_util.py from develop branch if running diff tests
- name: Checkout METplus diff util from develop branch
if: ${{ needs.job_control.outputs.run_diff == 'true' && steps.run_tests.conclusion == 'success' }}
uses: actions/checkout@v4
with:
repository: 'dtcenter/metplus'
ref: 'develop'
path: METplus.develop
sparse-checkout: |
metplus/util/diff_util.py
.github/jobs/run_diff_docker.py
sparse-checkout-cone-mode: false

# run difference testing
- name: Run difference tests
id: run-diff
Expand Down
12 changes: 6 additions & 6 deletions docs/Users_Guide/existing_builds.rst
Original file line number Diff line number Diff line change
Expand Up @@ -585,29 +585,29 @@ in the
.. dropdown:: DockerHub

| **MET**
| *Last Updated: July 30, 2025*
| *Last Updated: February 27, 2026*

.. code-block:: ini

docker pull dtcenter/met:12.1.0
docker pull dtcenter/met:12.1.2

`dtcenter/met DockerHub <https://hub.docker.com/r/dtcenter/met>`_

| **METplus**
| *Last Updated: July 30, 2025*
| *Last Updated: March 2, 2026*

.. code-block:: ini

docker pull dtcenter/metplus:6.1.0
docker pull dtcenter/metplus:6.1.1

`dtcenter/metplus DockerHub <https://hub.docker.com/r/dtcenter/metplus>`_

| **METplus Analysis**
| *Last Updated: July 30, 2025*
| *Last Updated: March 2, 2026*

.. code-block:: ini

docker pull dtcenter/metplus-analysis:6.1.0
docker pull dtcenter/metplus-analysis:6.1.1

`dtcenter/metplus-analysis DockerHub <https://hub.docker.com/r/dtcenter/metplus-analysis>`_

Expand Down
29 changes: 29 additions & 0 deletions docs/Users_Guide/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,35 @@ When applicable, release notes are followed by the
describes the bugfix, enhancement, or new feature.
Important issues are listed **in bold** for emphasis.


METplus Version 6.1.1 Release Notes (2026-03-02)
------------------------------------------------

.. dropdown:: Enhancements

None

.. dropdown:: Bugfix

* Update dateutil comparisons and s2s use case to support Python 3.14
(`#3228 <https://github.com/dtcenter/METplus/issues/3228>`_)

.. dropdown:: New Wrappers

None

.. dropdown:: New Use Cases

None

.. dropdown:: Documentation

None

.. dropdown:: Build, repository, and test

None

METplus Version 6.1.0 Release Notes (2025-07-30)
------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion metplus/RELEASE_DATE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20250730
20260302
2 changes: 1 addition & 1 deletion metplus/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.1.0
6.1.1