[Git][debian-gis-team/python-geojson][experimental] 7 commits: Revert "Update branch in gbp.conf & Vcs-Git URL."

Bas Couwenberg (@sebastic) gitlab at salsa.debian.org
Thu Feb 16 04:35:45 GMT 2023



Bas Couwenberg pushed to branch experimental at Debian GIS Project / python-geojson


Commits:
49b39114 by Bas Couwenberg at 2023-01-27T07:39:12+01:00
Revert "Update branch in gbp.conf & Vcs-Git URL."

This reverts commit e43a14a797def7a0f1f11277ec4622c0e89ffff8.

- - - - -
0d624bea by Bas Couwenberg at 2023-01-27T07:39:41+01:00
Move from experimental to unstable.

- - - - -
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.

- - - - -


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~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.
+  * Move from experimental to unstable.
+
+ -- Bas Couwenberg <sebastic at debian.org>  Fri, 27 Jan 2023 07:39:37 +0100
+
 python-geojson (3.0.0-1~exp1) experimental; 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/0425cca7bd1cd777ef52ee36f3dbaf691c6ee8ee...3fa377cbeff3b70eaadaceb1a9caac55e5d2fc2b

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/python-geojson/-/compare/0425cca7bd1cd777ef52ee36f3dbaf691c6ee8ee...3fa377cbeff3b70eaadaceb1a9caac55e5d2fc2b
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/20230216/bd46ad88/attachment-0001.htm>


More information about the Pkg-grass-devel mailing list