[Git][debian-gis-team/python-geotiepoints][upstream] New upstream version 1.7.4
Antonio Valentino (@antonio.valentino)
gitlab at salsa.debian.org
Sat Jun 29 10:28:06 BST 2024
Antonio Valentino pushed to branch upstream at Debian GIS Project / python-geotiepoints
Commits:
5a5d506b by Antonio Valentino at 2024-06-29T09:14:32+00:00
New upstream version 1.7.4
- - - - -
5 changed files:
- .github/workflows/ci.yaml
- .github/workflows/deploy.yaml
- CHANGELOG.md
- geotiepoints/multilinear.py
- geotiepoints/version.py
Changes:
=====================================
.github/workflows/ci.yaml
=====================================
@@ -59,7 +59,6 @@ jobs:
git+https://github.com/h5py/h5py \
git+https://github.com/storpipfugl/pykdtree \
git+https://github.com/pytroll/pyresample \
- git+https://github.com/zarr-developers/zarr \
git+https://github.com/pydata/bottleneck \
git+https://github.com/pydata/xarray;
=====================================
.github/workflows/deploy.yaml
=====================================
@@ -37,7 +37,7 @@ jobs:
- os: windows-2019
cibw_archs: "AMD64 ARM64"
artifact_name: "win"
- - os: macos-11
+ - os: macos-latest
cibw_archs: "x86_64 arm64"
artifact_name: "mac"
- os: "ubuntu-20.04"
@@ -59,7 +59,7 @@ jobs:
platforms: all
- name: Build wheels
- uses: pypa/cibuildwheel at v2.17.0
+ uses: pypa/cibuildwheel at v2.18.1
env:
CIBW_SKIP: "cp36-* cp37-* cp38-* pp* *-manylinux_i686 *-musllinux_i686 *-musllinux_aarch64 *-win32"
CIBW_ARCHS: "${{ matrix.cibw_archs }}"
=====================================
CHANGELOG.md
=====================================
@@ -1,3 +1,14 @@
+## Version 1.7.4 (2024/06/26)
+
+### Pull Requests Merged
+
+#### Bugs fixed
+
+* [PR 76](https://github.com/pytroll/python-geotiepoints/pull/76) - Fix numpy 2 dtype issues
+
+In this release 1 pull request was closed.
+
+
## Version 1.7.3 (2024/04/15)
### Pull Requests Merged
=====================================
geotiepoints/multilinear.py
=====================================
@@ -61,7 +61,7 @@ class MultilinearInterpolator:
def __init__(self, smin, smax, orders, values=None, dtype=np.float64):
self.smin = np.asarray(smin, dtype=dtype)
self.smax = np.asarray(smax, dtype=dtype)
- self.orders = np.asarray(orders, dtype=np.int_)
+ self.orders = np.asarray(orders, dtype="long")
self.d = len(orders)
self.dtype = dtype
if values is not None:
=====================================
geotiepoints/version.py
=====================================
@@ -26,9 +26,9 @@ def get_keywords():
# setup.py/versioneer.py will grep for the variable names, so they must
# each be defined on a line of their own. _version.py will just call
# get_keywords().
- git_refnames = " (HEAD -> main, tag: v1.7.3)"
- git_full = "2d67be201f1fd54374c72865e284689404fbfd94"
- git_date = "2024-04-15 21:09:21 -0500"
+ git_refnames = " (HEAD -> main, tag: v1.7.4)"
+ git_full = "29587f81d55e044bae9583c6f47ff3d715cfb199"
+ git_date = "2024-06-26 11:18:44 -0500"
keywords = {"refnames": git_refnames, "full": git_full, "date": git_date}
return keywords
View it on GitLab: https://salsa.debian.org/debian-gis-team/python-geotiepoints/-/commit/5a5d506b7c6caf495fcc182ba64669de4c7c9c7b
--
This project does not include diff previews in email notifications.
View it on GitLab: https://salsa.debian.org/debian-gis-team/python-geotiepoints/-/commit/5a5d506b7c6caf495fcc182ba64669de4c7c9c7b
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20240629/40f41ac4/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list