Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/install_doctest_lint_typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
# You can use PyPy versions in python-version.
# For example, pypy2.7 and pypy3.9
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions sorted_nearest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import pkg_resources
from importlib.metadata import version

from sorted_nearest.src.annotate_clusters import annotate_clusters # type: ignore # NOQA: F401
from sorted_nearest.src.cluster_by import cluster_by # type: ignore # NOQA: F401
Expand All @@ -19,4 +19,4 @@
from sorted_nearest.src.tiles import maketiles # type: ignore # NOQA: F401
from sorted_nearest.src.windows import makewindows # type: ignore # NOQA: F401

__version__ = pkg_resources.get_distribution("sorted_nearest").version
__version__ = version("sorted_nearest")
Loading