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

prepare for v1.7.2 release #1376

Merged
merged 3 commits into from
Oct 22, 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
2 changes: 1 addition & 1 deletion .github/workflows/build_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
#NO_NET: 1
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.12"]
steps:

- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
#NO_NET: 1
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.12"]
steps:

- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_old.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
#NO_NET: 1
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.12"]
steps:

- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/miniconda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# NO_NET: 1
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
os: [windows-latest, ubuntu-latest, macos-latest]
platform: [x64, x32]
exclude:
Expand All @@ -35,7 +35,7 @@ jobs:
init-shell: bash
create-args: >-
python=${{ matrix.python-version }}
numpy cython pip pytest hdf5 libnetcdf cftime zlib certifi typing-extensions
numpy cython pip setuptools pytest hdf5 libnetcdf cftime zlib certifi typing-extensions
--channel conda-forge

- name: Install netcdf4-python
Expand All @@ -51,7 +51,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ "3.11" ]
python-version: [ "3.12" ]
os: [ubuntu-latest]
platform: [x64]
defaults:
Expand Down
6 changes: 3 additions & 3 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version 1.7.2 (not yet released)
===============================
* add static type hints (PR #1302)
version 1.7.2 (tag v1.7.2rel)
=============================
* add static type hints (PRs #1302, #1349)
* Expose nc_rc_set, nc_rc_get (via rc_set, rc_get module functions). (PR #1348)
* Add Variable.get_fill_value and allow `fill_value='default'` to
set `_FillValue` using default fill values. (issue #1374, PR #1375).
Expand Down
Loading