[Git][debian-gis-team/antimeridian][master] 5 commits: New upstream version 0.3.4
Antonio Valentino (@antonio.valentino)
gitlab at salsa.debian.org
Sat Apr 6 11:24:24 BST 2024
Antonio Valentino pushed to branch master at Debian GIS Project / antimeridian
Commits:
bba541de by Antonio Valentino at 2024-04-06T10:17:56+00:00
New upstream version 0.3.4
- - - - -
a7e2dc5b by Antonio Valentino at 2024-04-06T10:18:09+00:00
Update upstream source from tag 'upstream/0.3.4'
Update to upstream version '0.3.4'
with Debian dir c689d8c8631c61c90545b5e66a5d7dc5c5d38157
- - - - -
676acdd0 by Antonio Valentino at 2024-04-06T10:19:01+00:00
New upstream release
- - - - -
5f9fbe31 by Antonio Valentino at 2024-04-06T10:22:58+00:00
Update dates in d/copyright
- - - - -
ff171704 by Antonio Valentino at 2024-04-06T10:22:59+00:00
Set distribution to unstable
- - - - -
8 changed files:
- .github/workflows/ci.yaml
- .github/workflows/release.yaml
- .pre-commit-config.yaml
- CHANGELOG.md
- debian/changelog
- debian/copyright
- pyproject.toml
- src/antimeridian/_implementation.py
Changes:
=====================================
.github/workflows/ci.yaml
=====================================
@@ -21,9 +21,9 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
- uses: actions/checkout at v3
+ uses: actions/checkout at v4
- name: Setup Python
- uses: actions/setup-python at v4
+ uses: actions/setup-python at v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
@@ -40,9 +40,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout at v3
+ uses: actions/checkout at v4
- name: Setup Python
- uses: actions/setup-python at v4
+ uses: actions/setup-python at v5
with:
python-version: "3.8"
cache: "pip"
@@ -65,18 +65,18 @@ jobs:
PYDEVD_DISABLE_FILE_VALIDATION: 1
steps:
- name: Checkout
- uses: actions/checkout at v3
+ uses: actions/checkout at v4
- name: Cache conda
- uses: actions/cache at v3
+ uses: actions/cache at v4
with:
path: ~/conda_pkgs_dir
key: ${{ runner.os }}-conda-${{ hashFiles('docs/environment.yaml') }}
- name: Cache pip
- uses: actions/cache at v3
+ uses: actions/cache at v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
- - uses: conda-incubator/setup-miniconda at v2
+ - uses: conda-incubator/setup-miniconda at v3
with:
auto-update-conda: true
environment-file: docs/environment.yaml
=====================================
.github/workflows/release.yaml
=====================================
@@ -14,9 +14,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout at v3
+ uses: actions/checkout at v4
- name: Setup Python
- uses: actions/setup-python at v4
+ uses: actions/setup-python at v5
with:
python-version: "3.11"
- name: Install build
=====================================
.pre-commit-config.yaml
=====================================
@@ -1,13 +1,13 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v4.4.0
+ rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/psf/black
- rev: 23.7.0
+ rev: 24.3.0
hooks:
- id: black
- repo: https://github.com/adamchainz/blacken-docs
@@ -17,13 +17,13 @@ repos:
additional_dependencies:
- black~=23.3
- repo: https://github.com/pre-commit/mirrors-mypy
- rev: v1.5.1
+ rev: v1.9.0
hooks:
- id: mypy
additional_dependencies:
- click~=8.1.6
- pytest~=7.3
- repo: https://github.com/charliermarsh/ruff-pre-commit
- rev: v0.0.285
+ rev: v0.3.4
hooks:
- id: ruff
=====================================
CHANGELOG.md
=====================================
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## [Unreleased]
+## [0.3.4]
+
+### Fixed
+
+- Project url ([#106](https://github.com/gadomski/antimeridian/issues/106))
+
## [0.3.3] - 2023-08-21
### Fixed
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+antimeridian (0.3.4-1) unstable; urgency=medium
+
+ * New upstream release.
+ * Update dates in d/copyright.
+
+ -- Antonio Valentino <antonio.valentino at tiscali.it> Sat, 06 Apr 2024 10:19:18 +0000
+
antimeridian (0.3.3-1) unstable; urgency=medium
* New upstream release.
=====================================
debian/copyright
=====================================
@@ -8,7 +8,7 @@ Copyright: 2023, Pete Gadomski <pete.gadomski at gmail.com>
License: Apache-2.0
Files: debian/*
-Copyright: 2023, Antonio Valentino <antonio.valentino at tiscali.it>
+Copyright: 2023-2024, Antonio Valentino <antonio.valentino at tiscali.it>
License: Apache-2.0
License: Apache-2.0
=====================================
pyproject.toml
=====================================
@@ -1,6 +1,6 @@
[project]
name = "antimeridian"
-version = "0.3.3"
+version = "0.3.4"
authors = [{ name = "Pete Gadomski", email = "pete.gadomski at gmail.com" }]
description = "Fix GeoJSON geometries that cross the antimeridian"
readme = "README.md"
@@ -15,20 +15,20 @@ dependencies = ["numpy>=1.17.4", "shapely>=2.0"]
[project.urls]
Documentation = "https://antimeridian.readthedocs.io"
-Github = "https://github.com/gadomski/antimeridan"
+Github = "https://github.com/gadomski/antimeridian"
Changelog = "https://github.com/gadomski/antimeridian/blob/main/CHANGELOG.md"
[project.optional-dependencies]
cli = ["click~=8.1.6"]
dev = [
- "black~=23.3",
+ "black~=24.0",
"blacken-docs~=1.13",
"mypy~=1.2",
- "packaging~=23.1",
+ "packaging~=24.0",
"pre-commit~=3.2",
- "pytest~=7.3",
+ "pytest~=8.0",
"pytest-console-scripts~=1.3",
- "ruff==0.0.285",
+ "ruff==0.3.4",
"tomli~=2.0; python_version<'3.11'",
"typing_extensions; python_version<'3.10'",
]
@@ -38,7 +38,7 @@ docs = [
"jupytext~=1.14",
"nbsphinx~=0.9",
"pydata-sphinx-theme~=0.13",
- "scipy~=1.10.0", # need to stay below 1.11 due to https://github.com/SciTools/cartopy/issues/2199
+ "scipy~=1.12",
"sphinx~=7.0",
"sphinx-click~=5.0",
]
=====================================
src/antimeridian/_implementation.py
=====================================
@@ -61,8 +61,7 @@ class GeoInterface(Protocol):
extract geometries from objects.
"""
- def __geo_interface__(self) -> Dict[str, Any]:
- ...
+ def __geo_interface__(self) -> Dict[str, Any]: ...
def fix_geojson(
View it on GitLab: https://salsa.debian.org/debian-gis-team/antimeridian/-/compare/dc0773bd9ab0b721f4635495fed527fd0010ab8f...ff1717046893566f4f4278e3d65dffafccd36510
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/antimeridian/-/compare/dc0773bd9ab0b721f4635495fed527fd0010ab8f...ff1717046893566f4f4278e3d65dffafccd36510
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/20240406/0888c5bb/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list