[Git][debian-gis-team/python-geojson][master] 7 commits: Update branch in gbp.conf & Vcs-Git URL.
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Sun Jun 11 13:27:28 BST 2023
Bas Couwenberg pushed to branch master at Debian GIS Project / python-geojson
Commits:
bbe4b7fa by Bas Couwenberg at 2023-02-16T05:26:05+01:00
Update branch in gbp.conf & Vcs-Git URL.
- - - - -
84d36002 by Bas Couwenberg at 2023-02-16T05:26:23+01:00
New upstream version 3.0.1
- - - - -
98d6a0a7 by Bas Couwenberg at 2023-02-16T05:26:24+01:00
Update upstream source from tag 'upstream/3.0.1'
Update to upstream version '3.0.1'
with Debian dir 442843fbbde3dc345b194837f837223574f37ff8
- - - - -
1ef55dc3 by Bas Couwenberg at 2023-02-16T05:26:49+01:00
New upstream release.
- - - - -
3fa377cb by Bas Couwenberg at 2023-02-16T05:27:53+01:00
Set distribution to experimental.
- - - - -
0690c4df by Bas Couwenberg at 2023-06-11T14:14:25+02:00
Revert "Update branch in gbp.conf & Vcs-Git URL."
This reverts commit bbe4b7fac9dc8647c32243d12bcc44f729d50687.
- - - - -
74b745ae by Bas Couwenberg at 2023-06-11T14:14:37+02:00
Move from experimental to unstable.
- - - - -
7 changed files:
- .github/workflows/release.yml
- .github/workflows/test.yml
- CHANGELOG.rst
- debian/changelog
- geojson/_version.py
- − setup.cfg
- setup.py
Changes:
=====================================
.github/workflows/release.yml
=====================================
@@ -7,31 +7,20 @@ on:
jobs:
build:
- if: github.repository == 'jazzband/geojson'
+ if: github.repository_owner == 'jazzband'
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout at v2
+ - uses: actions/checkout at v3
with:
fetch-depth: 0
- name: Set up Python
- uses: actions/setup-python at v2
+ uses: actions/setup-python at v4
with:
- python-version: '3.8'
-
- - name: Get pip cache dir
- id: pip-cache
- run: |
- echo "::set-output name=dir::$(pip cache dir)"
-
- - name: Cache
- uses: actions/cache at v2
- with:
- path: ${{ steps.pip-cache.outputs.dir }}
- key: release-${{ hashFiles('**/setup.py') }}
- restore-keys: |
- release-
+ python-version: "3.x"
+ cache: pip
+ cache-dependency-path: setup.py
- name: Install dependencies
run: |
@@ -46,7 +35,7 @@ jobs:
- name: Upload packages to Jazzband
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
- uses: pypa/gh-action-pypi-publish at master
+ uses: pypa/gh-action-pypi-publish at release/v1
with:
user: jazzband
password: ${{ secrets.JAZZBAND_RELEASE_KEY }}
=====================================
.github/workflows/test.yml
=====================================
@@ -11,10 +11,10 @@ jobs:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.8']
steps:
- - uses: actions/checkout at v2
+ - uses: actions/checkout at v3
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python at v2
+ uses: actions/setup-python at v4
with:
python-version: ${{ matrix.python-version }}
@@ -24,7 +24,7 @@ jobs:
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache
- uses: actions/cache at v2
+ uses: actions/cache at v3
with:
path: ${{ steps.pip-cache.outputs.dir }}
key:
@@ -43,6 +43,6 @@ jobs:
coverage xml
- name: Upload coverage
- uses: codecov/codecov-action at v1
+ uses: codecov/codecov-action at v3
with:
name: Python ${{ matrix.python-version }}
=====================================
CHANGELOG.rst
=====================================
@@ -1,6 +1,15 @@
Changes
=======
+
+3.0.1 (2022-02-15)
+------------------
+
+- Add Support for Python 3.11.x minor revisions
+
+ - https://github.com/jazzband/geojson/pull/198
+
+
3.0.0 (2022-01-26)
------------------
=====================================
debian/changelog
=====================================
@@ -1,3 +1,17 @@
+python-geojson (3.0.1-1) unstable; urgency=medium
+
+ * Team upload.
+ * Move from experimental to unstable.
+
+ -- Bas Couwenberg <sebastic at debian.org> Sun, 11 Jun 2023 14:14:28 +0200
+
+python-geojson (3.0.1-1~exp1) experimental; urgency=medium
+
+ * Team upload.
+ * New upstream release.
+
+ -- Bas Couwenberg <sebastic at debian.org> Thu, 16 Feb 2023 05:27:39 +0100
+
python-geojson (3.0.0-1) unstable; urgency=medium
* Team upload.
=====================================
geojson/_version.py
=====================================
@@ -1,2 +1,2 @@
-__version__ = "3.0.0"
+__version__ = "3.0.1"
__version_info__ = tuple(map(int, __version__.split(".")))
=====================================
setup.cfg deleted
=====================================
@@ -1,2 +0,0 @@
-[bdist_wheel]
-universal = 1
=====================================
setup.py
=====================================
@@ -48,7 +48,7 @@ setup(
package_data={"geojson": ["*.rst"]},
install_requires=[],
test_suite="setup.test_suite",
- python_requires=">=3.7, <=3.11",
+ python_requires=">=3.7, <3.12",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
View it on GitLab: https://salsa.debian.org/debian-gis-team/python-geojson/-/compare/0d624bea3bc24a00b893667b0ba8b7dc0ebd014e...74b745aeac713499576bdade521a1928e6b8a60a
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/python-geojson/-/compare/0d624bea3bc24a00b893667b0ba8b7dc0ebd014e...74b745aeac713499576bdade521a1928e6b8a60a
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/20230611/bb8828e1/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list