goodmap 1.1.12__py3-none-any.whl → 1.1.14__py3-none-any.whl
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.
- goodmap/data_models/location.py +3 -7
- {goodmap-1.1.12.dist-info → goodmap-1.1.14.dist-info}/METADATA +3 -2
- {goodmap-1.1.12.dist-info → goodmap-1.1.14.dist-info}/RECORD +5 -5
- {goodmap-1.1.12.dist-info → goodmap-1.1.14.dist-info}/LICENSE.md +0 -0
- {goodmap-1.1.12.dist-info → goodmap-1.1.14.dist-info}/WHEEL +0 -0
goodmap/data_models/location.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from typing import Any, Type
|
|
1
|
+
from typing import Any, Type, cast
|
|
2
2
|
|
|
3
3
|
from pydantic import (
|
|
4
4
|
BaseModel,
|
|
@@ -58,11 +58,7 @@ def create_location_model(obligatory_fields: list[tuple[str, Type[Any]]]) -> Typ
|
|
|
58
58
|
|
|
59
59
|
return create_model(
|
|
60
60
|
"Location",
|
|
61
|
-
__config__=None,
|
|
62
|
-
__doc__=None,
|
|
63
|
-
__module__="Location",
|
|
64
|
-
__validators__=None,
|
|
65
61
|
__base__=LocationBase,
|
|
66
|
-
|
|
67
|
-
**fields,
|
|
62
|
+
__module__="goodmap.data_models.location",
|
|
63
|
+
**cast(dict[str, Any], fields),
|
|
68
64
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: goodmap
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.14
|
|
4
4
|
Summary: Map engine to serve all the people :)
|
|
5
5
|
Author: Krzysztof Kolodzinski
|
|
6
6
|
Author-email: krzysztof.kolodzinski@problematy.pl
|
|
@@ -21,7 +21,7 @@ Requires-Dist: deprecation (>=2.1.0,<3.0.0)
|
|
|
21
21
|
Requires-Dist: flask-restx (>=1.3.0,<2.0.0)
|
|
22
22
|
Requires-Dist: google-cloud-storage (>=2.7.0,<3.0.0)
|
|
23
23
|
Requires-Dist: gql (>=3.4.0,<4.0.0)
|
|
24
|
-
Requires-Dist: gunicorn (>=20.1
|
|
24
|
+
Requires-Dist: gunicorn (>=20.1,<24.0)
|
|
25
25
|
Requires-Dist: humanize (>=4.6.0,<5.0.0)
|
|
26
26
|
Requires-Dist: myst-parser (>=4.0.0,<5.0.0) ; extra == "docs"
|
|
27
27
|
Requires-Dist: numpy (>=2.2.0,<3.0.0)
|
|
@@ -137,4 +137,5 @@ You can find examples of working configuration and database in `examples/` direc
|
|
|
137
137
|
- `mongo_e2e_test_config.yml` - MongoDB configuration example
|
|
138
138
|
|
|
139
139
|
|
|
140
|
+
# final test
|
|
140
141
|
|
|
@@ -3,7 +3,7 @@ goodmap/clustering.py,sha256=ULB-fPNOUDblgpBK4vzuo0o2yqIcvG84F3R6Za2X_l4,2905
|
|
|
3
3
|
goodmap/config.py,sha256=CsmC1zuvVab90VW50dtARHbFJpy2vfsIfbque8Zgc-U,1313
|
|
4
4
|
goodmap/core.py,sha256=rzMhOIYnR1jxTX6uHQJKIPLYxdUm4_v2d6LrtHtJpHU,1465
|
|
5
5
|
goodmap/core_api.py,sha256=Xzr9x89-K0gURcFvAypjKaboExdTKq1KfLfnGTvNG-Q,21144
|
|
6
|
-
goodmap/data_models/location.py,sha256=
|
|
6
|
+
goodmap/data_models/location.py,sha256=E2vUD9Sfr02eLbe-W0mBNtvGnqs7WqBP3XVyB-IgKq4,1951
|
|
7
7
|
goodmap/data_validator.py,sha256=lBmVAPxvSmEOdUGeVYSjUvVVmKfPyq4CWoHfczTtEMM,4090
|
|
8
8
|
goodmap/db.py,sha256=TcqYGbK5yk6S735Si1AzjNqcbB1nsd9pFGOy5qN9Vec,46589
|
|
9
9
|
goodmap/exceptions.py,sha256=jkFAUoc5LHk8iPjxHxbcRp8W6qFCSEA25A8XaSwxwyo,2906
|
|
@@ -11,7 +11,7 @@ goodmap/formatter.py,sha256=VlUHcK1HtM_IEU0VE3S5TOkZLVheMdakvUeW2tCKdq0,783
|
|
|
11
11
|
goodmap/goodmap.py,sha256=LbmzYn4FHaP-Y5ZtQhMncGO2h18k2WYAsP5Hzw4oGUw,3392
|
|
12
12
|
goodmap/templates/goodmap-admin.html,sha256=LSiOZ9-n29CnlfVNwdgmXwT7Xe7t5gvGh1xSrFGqOIY,35669
|
|
13
13
|
goodmap/templates/map.html,sha256=Uk7FFrZwvHZvG0DDaQrGW5ZrIMD21XrJzMub76uIlAg,4348
|
|
14
|
-
goodmap-1.1.
|
|
15
|
-
goodmap-1.1.
|
|
16
|
-
goodmap-1.1.
|
|
17
|
-
goodmap-1.1.
|
|
14
|
+
goodmap-1.1.14.dist-info/LICENSE.md,sha256=nkCQOR7uheLRvHRfXmwx9LhBnMcPeBU9d4ebLojDiQU,1067
|
|
15
|
+
goodmap-1.1.14.dist-info/METADATA,sha256=00trO1OenoKs-zPIHz4aH4aciBZVqGy35XgP2DNF6Og,5802
|
|
16
|
+
goodmap-1.1.14.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
17
|
+
goodmap-1.1.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|