Antonio Valentino pushed to branch upstream at Debian GIS Project / xsar


Commits:
bde995e5 by Antonio Valentino at 2024-04-28T08:02:24+00:00
New upstream version 2024.04.24
- - - - -


4 changed files:

- .git_archival.txt
- .github/actions/dynamic_matrix.py
- .github/workflows/publish.yml
- src/xsar/sentinel1_meta.py


Changes:

=====================================
.git_archival.txt
=====================================
@@ -1 +1 @@
-ref-names: HEAD -> develop, tag: 2024.02.1
\ No newline at end of file
+ref-names: HEAD -> develop, tag: 2024.04.24
\ No newline at end of file


=====================================
.github/actions/dynamic_matrix.py
=====================================
@@ -9,7 +9,7 @@ with 
urllib.request.urlopen('https://endoflife.date/api/python.json') as f:
     python_versions = json.loads(f.read().decode('utf-8'))
 
 now = datetime.datetime.now().strftime('%Y-%m-%d')
-python_supported_versions = [ v['cycle'] for v in python_versions if v['eol'] 
> now and v['cycle'] not in ['3.7','3.8'] ]
+python_supported_versions = [ v['cycle'] for v in python_versions if v['eol'] 
> now and v['cycle'] not in ['3.7','3.8','3.12'] ]
 
 python_default_version = python_supported_versions[1]
 


=====================================
.github/workflows/publish.yml
=====================================
@@ -51,4 +51,4 @@ jobs:
           path: dist/
 
       - name: Publish to PyPI
-        uses: 
pypa/gh-action-pypi-publish@2f6f737ca5f74c637829c0f5c3acd0e29ea5e8bf
+        uses: 
pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450


=====================================
src/xsar/sentinel1_meta.py
=====================================
@@ -41,7 +41,10 @@ class Sentinel1Meta(BaseMeta):
 
     @timing
     def __init__(self, name):
-        from safe_s1.metadata import Sentinel1Reader
+        try:
+            from safe_s1.metadata import Sentinel1Reader
+        except:
+            from safe_s1.reader import Sentinel1Reader
         self.reader = Sentinel1Reader(name)
 
         if not name.startswith('SENTINEL1_DS:'):



View it on GitLab: 
https://salsa.debian.org/debian-gis-team/xsar/-/commit/bde995e550d7e8cb4b091aa59a47b72c6e805895

-- 
View it on GitLab: 
https://salsa.debian.org/debian-gis-team/xsar/-/commit/bde995e550d7e8cb4b091aa59a47b72c6e805895
You're receiving this email because of your account on salsa.debian.org.


_______________________________________________
Pkg-grass-devel mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel

Reply via email to