From 5cde191a13358a668e20216983eef84f29d69967 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Jun 2024 16:57:25 -0500 Subject: [PATCH] Build(deps): Bump the actions group with 3 updates (#1596) * Build(deps): Bump the actions group with 3 updates Bumps the actions group with 3 updates: [codecov/codecov-action](https://github.com/codecov/codecov-action), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `codecov/codecov-action` from 4.4.1 to 4.5.0 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.4.1...v4.5.0) Updates `pypa/cibuildwheel` from 2.18.1 to 2.19.1 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v2.18.1...v2.19.1) Updates `pypa/gh-action-pypi-publish` from 1.8.14 to 1.9.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.8.14...v1.9.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] * ADD: Add refined netcdf requirement * DEL: Remove the setup.cfg --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: mgrover1 Co-authored-by: Max Grover --- .github/workflows/ci.yml | 2 +- .github/workflows/wheels.yml | 4 ++-- requirements.txt | 2 +- setup.cfg | 3 --- 4 files changed, 4 insertions(+), 7 deletions(-) delete mode 100644 setup.cfg diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 943bfdca6b..d0b02964e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,7 @@ jobs: python -m pytest -v --cov=./ --cov-report=xml - name: Upload code coverage to Codecov - uses: codecov/codecov-action@v4.4.1 + uses: codecov/codecov-action@v4.5.0 with: file: ./coverage.xml flags: unittests diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 82a73b1298..99fa8c414b 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -44,7 +44,7 @@ jobs: git fetch --prune --unshallow - name: Build wheels for CPython - uses: pypa/cibuildwheel@v2.18.1 + uses: pypa/cibuildwheel@v2.19.1 with: output-dir: dist env: @@ -99,7 +99,7 @@ jobs: merge-multiple: true - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@v1.8.14 + uses: pypa/gh-action-pypi-publish@v1.9.0 with: user: __token__ password: ${{ secrets.PYPI_TOKEN }} diff --git a/requirements.txt b/requirements.txt index 482128e1a6..b5c0f5aa60 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ numpy scipy -netCDF4 +netCDF4>=1.7.0 matplotlib pooch cftime diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index b73bbebdf2..0000000000 --- a/setup.cfg +++ /dev/null @@ -1,3 +0,0 @@ - -[tool:pytest] -norecursedirs = build doc