goodmap 1.1.12__tar.gz → 1.1.14__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.
- {goodmap-1.1.12 → goodmap-1.1.14}/PKG-INFO +3 -2
- {goodmap-1.1.12 → goodmap-1.1.14}/README.md +1 -0
- {goodmap-1.1.12 → goodmap-1.1.14}/goodmap/data_models/location.py +3 -7
- {goodmap-1.1.12 → goodmap-1.1.14}/pyproject.toml +8 -11
- {goodmap-1.1.12 → goodmap-1.1.14}/LICENSE.md +0 -0
- {goodmap-1.1.12 → goodmap-1.1.14}/goodmap/__init__.py +0 -0
- {goodmap-1.1.12 → goodmap-1.1.14}/goodmap/clustering.py +0 -0
- {goodmap-1.1.12 → goodmap-1.1.14}/goodmap/config.py +0 -0
- {goodmap-1.1.12 → goodmap-1.1.14}/goodmap/core.py +0 -0
- {goodmap-1.1.12 → goodmap-1.1.14}/goodmap/core_api.py +0 -0
- {goodmap-1.1.12 → goodmap-1.1.14}/goodmap/data_validator.py +0 -0
- {goodmap-1.1.12 → goodmap-1.1.14}/goodmap/db.py +0 -0
- {goodmap-1.1.12 → goodmap-1.1.14}/goodmap/exceptions.py +0 -0
- {goodmap-1.1.12 → goodmap-1.1.14}/goodmap/formatter.py +0 -0
- {goodmap-1.1.12 → goodmap-1.1.14}/goodmap/goodmap.py +0 -0
- {goodmap-1.1.12 → goodmap-1.1.14}/goodmap/templates/goodmap-admin.html +0 -0
- {goodmap-1.1.12 → goodmap-1.1.14}/goodmap/templates/map.html +0 -0
|
@@ -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
|
|
|
@@ -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
|
[tool.poetry]
|
|
2
2
|
name = "goodmap"
|
|
3
|
-
version = "1.1.
|
|
3
|
+
version = "1.1.14"
|
|
4
4
|
description = "Map engine to serve all the people :)"
|
|
5
5
|
authors = ["Krzysztof Kolodzinski <krzysztof.kolodzinski@problematy.pl>"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -12,7 +12,7 @@ Flask = "3.0.3"
|
|
|
12
12
|
flask-restx = "^1.3.0"
|
|
13
13
|
Flask-Babel = "^4.0.0"
|
|
14
14
|
Babel = "^2.10.3"
|
|
15
|
-
gunicorn = "
|
|
15
|
+
gunicorn = ">=20.1,<24.0"
|
|
16
16
|
google-cloud-storage = "^2.7.0"
|
|
17
17
|
PyYAML = "^6.0"
|
|
18
18
|
humanize = "^4.6.0"
|
|
@@ -47,14 +47,11 @@ coveralls = ">=3.3.1,<5.0.0"
|
|
|
47
47
|
pyright = "^1.1.291"
|
|
48
48
|
freezegun = "^1.2.2"
|
|
49
49
|
black = "^24.8.0"
|
|
50
|
-
ruff = "
|
|
50
|
+
ruff = ">=0.4.4,<0.15.0"
|
|
51
51
|
platzky-redirections = "^0.1.0"
|
|
52
52
|
python-semantic-release = "^10.4.1"
|
|
53
53
|
interrogate = "^1.7.0"
|
|
54
54
|
|
|
55
|
-
[tool.poetry.group.local.dependencies]
|
|
56
|
-
platzky = {path = "vendor/platzky", develop = true}
|
|
57
|
-
|
|
58
55
|
[build-system]
|
|
59
56
|
requires = ["poetry-core>=1.0.0", "numpy"]
|
|
60
57
|
build-backend = "poetry.core.masonry.api"
|
|
@@ -77,10 +74,6 @@ reportUntypedClassDecorator = false
|
|
|
77
74
|
reportUnusedClass = false
|
|
78
75
|
reportUntypedBaseClass = false
|
|
79
76
|
|
|
80
|
-
exclude = [
|
|
81
|
-
"**/vendor/**",
|
|
82
|
-
]
|
|
83
|
-
|
|
84
77
|
[tool.black]
|
|
85
78
|
line-length = 100
|
|
86
79
|
target-version = ["py310"]
|
|
@@ -98,7 +91,6 @@ lint.select = [
|
|
|
98
91
|
]
|
|
99
92
|
|
|
100
93
|
[tool.pytest.ini_options]
|
|
101
|
-
addopts = "--ignore=vendor"
|
|
102
94
|
markers = [
|
|
103
95
|
"skip_coverage: skip coverage for this test"
|
|
104
96
|
]
|
|
@@ -116,6 +108,11 @@ tag_format = "{version}"
|
|
|
116
108
|
[tool.semantic_release.changelog]
|
|
117
109
|
exclude_commit_patterns = []
|
|
118
110
|
|
|
111
|
+
[tool.semantic_release.changelog.default_templates]
|
|
112
|
+
changelog_file = "CHANGELOG.md"
|
|
113
|
+
output_format = "md"
|
|
114
|
+
mask_initial_release = true
|
|
115
|
+
|
|
119
116
|
[tool.semantic_release.branches.main]
|
|
120
117
|
match = "main"
|
|
121
118
|
prerelease = false
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|