[Git][debian-gis-team/python-geopandas][master] 5 commits: New upstream version 0.8.2
Bas Couwenberg
gitlab at salsa.debian.org
Tue Jan 26 05:28:57 GMT 2021
Bas Couwenberg pushed to branch master at Debian GIS Project / python-geopandas
Commits:
36d0b88a by Bas Couwenberg at 2021-01-26T05:56:10+01:00
New upstream version 0.8.2
- - - - -
17499b20 by Bas Couwenberg at 2021-01-26T05:56:40+01:00
Update upstream source from tag 'upstream/0.8.2'
Update to upstream version '0.8.2'
with Debian dir fdc85478a32982a65fc45a75921dfe35a1da87b3
- - - - -
e728735e by Bas Couwenberg at 2021-01-26T05:57:01+01:00
New upstream release.
- - - - -
253a6876 by Bas Couwenberg at 2021-01-26T06:10:03+01:00
Update lintian overrides.
- - - - -
709c89f8 by Bas Couwenberg at 2021-01-26T06:10:03+01:00
Set distribution to unstable.
- - - - -
5 changed files:
- + .github/workflows/release_to_pypi.yml
- debian/changelog
- debian/python3-geopandas.lintian-overrides
- geopandas/_vectorized.py
- geopandas/_version.py
Changes:
=====================================
.github/workflows/release_to_pypi.yml
=====================================
@@ -0,0 +1,60 @@
+name: Publish geopandas to PyPI / GitHub
+
+on:
+ push:
+ tags:
+ - "v*"
+
+jobs:
+ build-n-publish:
+ name: Build and publish geopandas to PyPI
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout source
+ uses: actions/checkout at v2
+
+ - name: Set up Python
+ uses: actions/setup-python at v2
+ with:
+ python-version: "3.x"
+
+ - name: Build a binary wheel and a source tarball
+ run: |
+ python -m pip install --upgrade pip
+ pip install setuptools wheel
+ python setup.py sdist bdist_wheel
+
+ - name: Publish distribution to PyPI
+ uses: pypa/gh-action-pypi-publish at master
+ with:
+ user: __token__
+ password: ${{ secrets.PYPI_API_TOKEN }}
+
+ - name: Create GitHub Release
+ id: create_release
+ uses: actions/create-release at v1
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
+ with:
+ tag_name: ${{ github.ref }}
+ release_name: ${{ github.ref }}
+ draft: false
+ prerelease: false
+
+ - name: Get Asset name
+ run: |
+ export PKG=$(ls dist/)
+ set -- $PKG
+ echo "name=$1" >> $GITHUB_ENV
+
+ - name: Upload Release Asset (sdist) to GitHub
+ id: upload-release-asset
+ uses: actions/upload-release-asset at v1
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ with:
+ upload_url: ${{ steps.create_release.outputs.upload_url }}
+ asset_path: dist/${{ env.name }}
+ asset_name: ${{ env.name }}
+ asset_content_type: application/zip
=====================================
debian/changelog
=====================================
@@ -1,12 +1,14 @@
-python-geopandas (0.8.1-2) UNRELEASED; urgency=medium
+python-geopandas (0.8.2-1) unstable; urgency=medium
* Team upload.
+ * New upstream release.
* Drop python3-pysal from Recommends.
* Bump watch file version to 4.
* Update lintian overrides.
* Bump Standards-Version to 4.5.1, no changes.
+ * Update lintian overrides.
- -- Bas Couwenberg <sebastic at debian.org> Thu, 30 Jul 2020 05:50:46 +0200
+ -- Bas Couwenberg <sebastic at debian.org> Tue, 26 Jan 2021 05:57:40 +0100
python-geopandas (0.8.1-1) unstable; urgency=medium
=====================================
debian/python3-geopandas.lintian-overrides
=====================================
@@ -1,3 +1,3 @@
-# Zip archive data, at least v2.0 to extract
-broken-zip usr/lib/python*/dist-packages/geopandas/datasets/nybb_16a.zip
+# Not a problem
+package-contains-documentation-outside-usr-share-doc *
=====================================
geopandas/_vectorized.py
=====================================
@@ -24,6 +24,7 @@ except ImportError:
_names = {
+ "MISSING": None,
"NAG": None,
"POINT": "Point",
"LINESTRING": "LineString",
=====================================
geopandas/_version.py
=====================================
@@ -22,8 +22,8 @@ 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: v0.8.1, 0.8.x)"
- git_full = "03546f483e358b6565b11333f576e1bc68df1b57"
+ git_refnames = " (tag: v0.8.2, 0.8.x)"
+ git_full = "928fe6c2cad130b40b64d3cce295f4e4a6ba9624"
keywords = {"refnames": git_refnames, "full": git_full}
return keywords
View it on GitLab: https://salsa.debian.org/debian-gis-team/python-geopandas/-/compare/c96bfcc9ea9d6296ffeafae6ecf6485d5c1f086b...709c89f8c5b116faa3339abfe0f6c5c5fa9203e6
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/python-geopandas/-/compare/c96bfcc9ea9d6296ffeafae6ecf6485d5c1f086b...709c89f8c5b116faa3339abfe0f6c5c5fa9203e6
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/20210126/772b8379/attachment-0001.html>
More information about the Pkg-grass-devel
mailing list