[Git][debian-gis-team/python-geopandas][upstream] New upstream version 0.8.2
Bas Couwenberg
gitlab at salsa.debian.org
Tue Jan 26 05:29:00 GMT 2021
Bas Couwenberg pushed to branch upstream 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
- - - - -
3 changed files:
- + .github/workflows/release_to_pypi.yml
- 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
=====================================
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/-/commit/36d0b88adfc088a4e743cfa002018b4e62028dc9
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/python-geopandas/-/commit/36d0b88adfc088a4e743cfa002018b4e62028dc9
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/90d38ebd/attachment-0001.html>
More information about the Pkg-grass-devel
mailing list