From 73e76129a78f371091f81dd20397bbf1d2bc4a2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 10:05:28 +0000 Subject: [PATCH 1/3] Build(deps): Bump the actions group with 2 updates Bumps the actions group with 2 updates: [mamba-org/setup-micromamba](https://github.com/mamba-org/setup-micromamba) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `mamba-org/setup-micromamba` from 1 to 2 - [Release notes](https://github.com/mamba-org/setup-micromamba/releases) - [Commits](https://github.com/mamba-org/setup-micromamba/compare/v1...v2) Updates `pypa/gh-action-pypi-publish` from 1.10.2 to 1.10.3 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.10.2...v1.10.3) --- updated-dependencies: - dependency-name: mamba-org/setup-micromamba dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-docs.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/pypi-release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 1a63a7bdd3..e6a18b6ee0 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -24,7 +24,7 @@ jobs: # Install dependencies - name: Setup Conda Environment - uses: mamba-org/setup-micromamba@v1 + uses: mamba-org/setup-micromamba@v2 with: environment-file: docs/environment_docs.yml environment-name: act-docs diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d545578d1..eb32a90f6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: - uses: actions/checkout@v4 - name: Setup Conda Environment - uses: mamba-org/setup-micromamba@v1 + uses: mamba-org/setup-micromamba@v2 with: create-args: python=${{ matrix.python-version }} environment-file: ./continuous_integration/environment_actions.yml diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index fa13b0ae54..9b33f5d6a5 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -67,7 +67,7 @@ jobs: name: releases path: dist - name: Publish package to PyPI - uses: pypa/gh-action-pypi-publish@v1.10.2 + uses: pypa/gh-action-pypi-publish@v1.10.3 with: user: __token__ password: ${{ secrets.PYPI_TOKEN }} From f0592e1452f25cb953ca45d866fb0af77e49ce2a Mon Sep 17 00:00:00 2001 From: zssherman Date: Tue, 8 Oct 2024 10:44:05 -0500 Subject: [PATCH 2/3] MNT: Skip PSL tests until system is back up. --- .../{plot_noaa_fmcw_moment.py => skip_noaa_fmcw_moment.py} | 0 tests/discovery/test_noaapsl_discovery.py | 2 ++ tests/io/test_noaapsl.py | 3 +++ 3 files changed, 5 insertions(+) rename examples/discovery/{plot_noaa_fmcw_moment.py => skip_noaa_fmcw_moment.py} (100%) diff --git a/examples/discovery/plot_noaa_fmcw_moment.py b/examples/discovery/skip_noaa_fmcw_moment.py similarity index 100% rename from examples/discovery/plot_noaa_fmcw_moment.py rename to examples/discovery/skip_noaa_fmcw_moment.py diff --git a/tests/discovery/test_noaapsl_discovery.py b/tests/discovery/test_noaapsl_discovery.py index 3369371f91..01e1d84b44 100644 --- a/tests/discovery/test_noaapsl_discovery.py +++ b/tests/discovery/test_noaapsl_discovery.py @@ -1,8 +1,10 @@ import numpy as np +import pytest import act +@pytest.mark.skip(reason="NCEI is currently down.") def test_noaa_psl(): result = act.discovery.download_noaa_psl_data( site='ctd', diff --git a/tests/io/test_noaapsl.py b/tests/io/test_noaapsl.py index 2964b5c879..47ae72fe1d 100644 --- a/tests/io/test_noaapsl.py +++ b/tests/io/test_noaapsl.py @@ -103,6 +103,7 @@ def test_read_psl_surface_met(): ds = read_psl_surface_met('aaa22001.00m') +@pytest.mark.skip(reason="NCEI is currently down.") def test_read_psl_parsivel(): url = [ 'https://downloads.psl.noaa.gov/psd2/data/realtime/DisdrometerParsivel/Stats/ctd/2022/002/ctd2200200_stats.txt', @@ -121,6 +122,7 @@ def test_read_psl_parsivel(): assert 'number_density_drops' in ds +@pytest.mark.skip(reason="NCEI is currently down.") def test_read_psl_fmcw_moment(): result = act.discovery.download_noaa_psl_data( site='kps', instrument='Radar FMCW Moment', startdate='20220815', hour='06' @@ -132,6 +134,7 @@ def test_read_psl_fmcw_moment(): assert len(ds['time'].values) == 115 +@pytest.mark.skip(reason="NCEI is currently down.") def test_read_psl_sband_moment(): result = act.discovery.download_noaa_psl_data( site='ctd', instrument='Radar S-band Moment', startdate='20211225', hour='06' From 1d53bcc1ba0dcc8bd9d7edfc25b021b3d364e984 Mon Sep 17 00:00:00 2001 From: zssherman Date: Tue, 8 Oct 2024 12:38:04 -0500 Subject: [PATCH 3/3] CI: Remove ARM build. --- .github/workflows/ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb32a90f6c..fdf652cb6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,12 +34,6 @@ jobs: matrix: python-version: ["3.9", "3.10", "3.11", "3.12"] os: [macOS, ubuntu, Windows] - include: - - os: macos-latest - PLAT: arm64 - INTERFACE64: "" - platform: [x64] - steps: - uses: actions/checkout@v4