[Git][debian-gis-team/antimeridian][upstream] New upstream version 0.3.4
Antonio Valentino (@antonio.valentino)
gitlab at salsa.debian.org
Sat Apr 6 11:24:30 BST 2024
Antonio Valentino pushed to branch upstream at Debian GIS Project / antimeridian
Commits:
bba541de by Antonio Valentino at 2024-04-06T10:17:56+00:00
New upstream version 0.3.4
- - - - -
6 changed files:
- .github/workflows/ci.yaml
- .github/workflows/release.yaml
- .pre-commit-config.yaml
- CHANGELOG.md
- 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
=====================================
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/-/commit/bba541de199934d776a90ff325b66cac0b8d669e
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/antimeridian/-/commit/bba541de199934d776a90ff325b66cac0b8d669e
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/cda5c2d0/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list