Skip to content

Commit

Permalink
Add funding link to the PyPI meta (#84)
Browse files Browse the repository at this point in the history
This patch adds a funding link to the PyPI metainformation and also
bumps the package version to 1.1.3.
  • Loading branch information
ybubnov authored Oct 10, 2024
1 parent 3cce14d commit e1b708b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")


Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion torch_geopooling/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from typing import Final

__version__: Final[str] = "1.1.2"
__version__: Final[str] = "1.1.3"

0 comments on commit e1b708b

Please sign in to comment.