geo-adjacency 1.3.0__tar.gz → 1.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,12 +1,13 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: geo-adjacency
3
- Version: 1.3.0
3
+ Version: 1.3.2
4
4
  Summary: A package to determine which geometries are adjacent to each other, accounting for obstacles and gaps between features.
5
5
  License: MIT
6
+ License-File: LICENSE
6
7
  Keywords: voronoi,adjacency,geospatial,geometry
7
8
  Author: Andrew Smyth
8
9
  Author-email: andrew.j.smyth.89@gmail.com
9
- Requires-Python: >=3.10,<3.13
10
+ Requires-Python: >=3.10,<3.15
10
11
  Classifier: Development Status :: 4 - Beta
11
12
  Classifier: Intended Audience :: Science/Research
12
13
  Classifier: License :: OSI Approved :: MIT License
@@ -16,7 +17,8 @@ Classifier: Programming Language :: Python :: 3
16
17
  Classifier: Programming Language :: Python :: 3.10
17
18
  Classifier: Programming Language :: Python :: 3.11
18
19
  Classifier: Programming Language :: Python :: 3.12
19
- Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
20
22
  Classifier: Topic :: Scientific/Engineering
21
23
  Classifier: Topic :: Scientific/Engineering :: GIS
22
24
  Requires-Dist: geopandas (>=1.1.1,<2.0.0)
@@ -47,7 +49,7 @@ Recommended installation is with [pip](https://pypi.org/project/pip/):
47
49
  ```python -m pip install geo-adjacency```
48
50
 
49
51
  ## Build from source
50
- You must have Python <3.13,>=3.9 installed.
52
+ You must have Python 3.10-3.14 installed.
51
53
  ```
52
54
  $ git clone git@github.com:asmyth01/geo-adjacency.git
53
55
  $ cd geo-adjacency
@@ -13,7 +13,7 @@ Recommended installation is with [pip](https://pypi.org/project/pip/):
13
13
  ```python -m pip install geo-adjacency```
14
14
 
15
15
  ## Build from source
16
- You must have Python <3.13,>=3.9 installed.
16
+ You must have Python 3.10-3.14 installed.
17
17
  ```
18
18
  $ git clone git@github.com:asmyth01/geo-adjacency.git
19
19
  $ cd geo-adjacency
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "geo-adjacency"
3
- version = "1.3.0"
3
+ version = "1.3.2"
4
4
  description = "A package to determine which geometries are adjacent to each other, accounting for obstacles and gaps between features."
5
5
  authors = ["Andrew Smyth <andrew.j.smyth.89@gmail.com>"]
6
6
  readme = "README.md"
@@ -17,16 +17,17 @@ classifiers = [
17
17
  "Operating System :: OS Independent",
18
18
  "Programming Language :: Python",
19
19
  "Programming Language :: Python :: 3",
20
- "Programming Language :: Python :: 3.9",
21
20
  "Programming Language :: Python :: 3.10",
22
21
  "Programming Language :: Python :: 3.11",
23
22
  "Programming Language :: Python :: 3.12",
23
+ "Programming Language :: Python :: 3.13",
24
+ "Programming Language :: Python :: 3.14",
24
25
  "Topic :: Scientific/Engineering",
25
26
  "Topic :: Scientific/Engineering :: GIS",
26
27
  ]
27
28
 
28
29
  [tool.poetry.dependencies]
29
- python = "<3.13,>=3.10"
30
+ python = "<3.15,>=3.10"
30
31
  scipy = ">=1.11.3"
31
32
  shapely = ">=2.0.2"
32
33
  numpy = ">=1.26.2"
@@ -39,8 +40,10 @@ pandas = "^2.3.1"
39
40
  [tool.poetry.group.dev.dependencies]
40
41
  pytest = "^7.4.3"
41
42
  pytest-cov = "^4.1.0"
43
+ pytest-xdist = "^3.5.0"
42
44
  pylint = "^3.0.2"
43
45
  pre-commit = "^3.0.0"
46
+ tox = "^4.0"
44
47
 
45
48
  [tool.isort]
46
49
  profile = "black"
File without changes