[Git][debian-gis-team/python-geotiepoints][master] 5 commits: New upstream version 1.3.1

Antonio Valentino (@antonio.valentino) gitlab at salsa.debian.org
Sat Feb 5 08:03:45 GMT 2022



Antonio Valentino pushed to branch master at Debian GIS Project / python-geotiepoints


Commits:
1acee16d by Antonio Valentino at 2022-02-05T07:36:46+00:00
New upstream version 1.3.1
- - - - -
5d67ed25 by Antonio Valentino at 2022-02-05T07:37:27+00:00
Update upstream source from tag 'upstream/1.3.1'

Update to upstream version '1.3.1'
with Debian dir 3804316694a96438ba5b3beaebd3e65df2bf4010
- - - - -
50a6fc7c by Antonio Valentino at 2022-02-05T07:38:10+00:00
New usptream release

- - - - -
580e041c by Antonio Valentino at 2022-02-05T07:57:41+00:00
Update d/copyright

- - - - -
d5850406 by Antonio Valentino at 2022-02-05T07:58:02+00:00
Set distribution to unstable

- - - - -


7 changed files:

- .github/workflows/ci.yaml
- .github/workflows/deploy.yaml
- CHANGELOG.md
- debian/changelog
- debian/copyright
- geotiepoints/multilinear.py
- geotiepoints/version.py


Changes:

=====================================
.github/workflows/ci.yaml
=====================================
@@ -10,10 +10,10 @@ jobs:
       fail-fast: true
       matrix:
         os: ["windows-latest", "ubuntu-latest", "macos-latest"]
-        python-version: ["3.7", "3.8"]
+        python-version: ["3.8", "3.9", "3.10"]
         experimental: [false]
         include:
-          - python-version: "3.8"
+          - python-version: "3.9"
             os: "ubuntu-latest"
             experimental: true
 


=====================================
.github/workflows/deploy.yaml
=====================================
@@ -34,7 +34,7 @@ jobs:
       fail-fast: false
       matrix:
         os: [windows-latest, macos-latest]
-        python-version: [3.6, 3.7, 3.8, 3.9]
+        python-version: ["3.7", "3.8", "3.9", "3.10"]
         include:
           # Using pythons inside a docker image to provide all the Linux
           # python-versions permutations.
@@ -55,7 +55,7 @@ jobs:
       - name: Set up Python ${{ matrix.python-version }}
         uses: actions/setup-python at v1
         with:
-          python-version: ${{ matrix.python-version }}
+          python-version: "${{ matrix.python-version }}"
 
       - name: Install dependencies
         run: |
@@ -99,6 +99,7 @@ jobs:
           name: wheels
           path: dist
       - name: Publish package to PyPI
+        if: github.event.action != 'published'
         uses: pypa/gh-action-pypi-publish at v1.4.1
         with:
           user: __token__


=====================================
CHANGELOG.md
=====================================
@@ -1,3 +1,18 @@
+## Version 1.3.1 (2022/02/04)
+
+### Pull Requests Merged
+
+#### Bugs fixed
+
+* [PR 33](https://github.com/pytroll/python-geotiepoints/pull/33) - Fix deprecated use of np.int
+
+#### Features added
+
+* [PR 32](https://github.com/pytroll/python-geotiepoints/pull/32) - Change tested Python versions to 3.8, 3.9 and 3.10
+
+In this release 2 pull requests were closed.
+
+
 ## Version 1.3.0 (2021/09/12)
 
 ### Pull Requests Merged


=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+python-geotiepoints (1.3.1-1) unstable; urgency=medium
+
+  * New upstream release.
+  * Update d/copyright.
+
+ -- Antonio Valentino <antonio.valentino at tiscali.it>  Sat, 05 Feb 2022 07:57:46 +0000
+
 python-geotiepoints (1.3.0-1) unstable; urgency=medium
 
   [ Bas Couwenberg ]


=====================================
debian/copyright
=====================================
@@ -17,7 +17,7 @@ Copyright: 2018, Brian Warner
 License: CC0-1.0
 
 Files: debian/*
-Copyright: 2018-2021 Antonio Valentino <antonio.valentino at tiscali.it>
+Copyright: 2018-2022 Antonio Valentino <antonio.valentino at tiscali.it>
 License: GPL-3+
 
 License: GPL-3+


=====================================
geotiepoints/multilinear.py
=====================================
@@ -62,7 +62,7 @@ class MultilinearInterpolator:
     def __init__(self, smin, smax, orders, values=None, dtype=np.float64):
         self.smin = np.array(smin, dtype=dtype)
         self.smax = np.array(smax, dtype=dtype)
-        self.orders = np.array(orders, dtype=np.int)
+        self.orders = np.array(orders, dtype=np.int_)
         self.d = len(orders)
         self.dtype = dtype
         if values is not None:


=====================================
geotiepoints/version.py
=====================================
@@ -23,9 +23,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 = " (tag: v1.3.0)"
-    git_full = "587d348b1711180b8e654ee650c08d4f6079df10"
-    git_date = "2021-09-12 14:01:30 -0500"
+    git_refnames = " (HEAD -> main, tag: v1.3.1)"
+    git_full = "7c14ae9c84f103c2aea8a6bf57ebe3c90cad7f44"
+    git_date = "2022-02-04 09:17:40 -0600"
     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/-/compare/06bd3fa8702c66ad91ab1477f5ae04efb60fc6df...d5850406dd1d8d1d86de6ab396463a2f42f52926

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/python-geotiepoints/-/compare/06bd3fa8702c66ad91ab1477f5ae04efb60fc6df...d5850406dd1d8d1d86de6ab396463a2f42f52926
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/20220205/6b806fa9/attachment-0001.htm>


More information about the Pkg-grass-devel mailing list