From a61c79ee697fe4883b24d1802504daa2c0f82b9f Mon Sep 17 00:00:00 2001 From: Yasha Bubnov Date: Thu, 10 Oct 2024 21:52:56 +0200 Subject: [PATCH] Add funding link to the PyPI meta This patch adds a funding link to the PyPI metainformation and also bumps the package version to 1.1.3. --- CMakeLists.txt | 2 +- pyproject.toml | 5 +++-- torch_geopooling/__init__.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e35aff..ae29f19 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ find_package(Torch CONFIG REQUIRED) enable_testing() set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TORCH_CXX_FLAGS}") -set(torch_geopooling_LIBRARY_VERSION "1.1.2") +set(torch_geopooling_LIBRARY_VERSION "1.1.3") set(torch_geopooling_LIBRARY_SOVERSION "1") diff --git a/pyproject.toml b/pyproject.toml index dd261ad..ce6858b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,8 +35,9 @@ dependencies = ["shapely>=2.0.0", "torch >= 2.3.0, < 2.4.0"] [project.urls] -homepage = "https://github.com/ybubnov/torch_geopooling" -source = "https://github.com/ybubnov/torch_geopooling" +Funding = "https://github.com/sponsors/ybubnov" +Homepage = "https://github.com/ybubnov/torch_geopooling" +Source = "https://github.com/ybubnov/torch_geopooling" [project.optional-dependencies] diff --git a/torch_geopooling/__init__.py b/torch_geopooling/__init__.py index 656ecb9..1e71386 100644 --- a/torch_geopooling/__init__.py +++ b/torch_geopooling/__init__.py @@ -1,3 +1,3 @@ from typing import Final -__version__: Final[str] = "1.1.2" +__version__: Final[str] = "1.1.3"