Skip to content

Commit

Permalink
Build(deps): Bump the actions group with 2 updates (#859)
Browse files Browse the repository at this point in the history
* 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](mamba-org/setup-micromamba@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](pypa/gh-action-pypi-publish@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] <[email protected]>

* MNT: Skip PSL tests until system is back up.

* CI: Remove ARM build.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: zssherman <[email protected]>
  • Loading branch information
dependabot[bot] and zssherman authored Oct 11, 2024
1 parent dadda9c commit 2a4ef57
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,11 @@ 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

- 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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
name: releases
path: dist
- name: Publish package to PyPI
uses: pypa/[email protected].2
uses: pypa/[email protected].3
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
Expand Down
File renamed without changes.
2 changes: 2 additions & 0 deletions tests/discovery/test_noaapsl_discovery.py
Original file line number Diff line number Diff line change
@@ -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',
Expand Down
3 changes: 3 additions & 0 deletions tests/io/test_noaapsl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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'
Expand All @@ -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'
Expand Down

0 comments on commit 2a4ef57

Please sign in to comment.