xmas-app 0.12.0__tar.gz → 0.12.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,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xmas-app
3
- Version: 0.12.0
3
+ Version: 0.12.2
4
4
  Summary: The XLeitstelle model-driven application schema app.
5
5
  License: EUPL-1.2-or-later
6
6
  License-File: LICENSE
7
7
  Author: Tobias Kraft
8
8
  Author-email: tobias.kraft@gv.hamburg.de
9
9
  Requires-Python: >=3.11,<3.14
10
- Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Development Status :: 4 - Beta
11
11
  Classifier: Framework :: Pydantic :: 2
12
12
  Classifier: License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)
13
13
  Classifier: Operating System :: OS Independent
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 3
15
15
  Requires-Dist: nicegui (>=2.20,<3.0)
16
16
  Requires-Dist: pydantic-extra-types[semver]
17
17
  Requires-Dist: pydantic-settings (>=2.0,<3.0)
18
- Requires-Dist: xplan-tools (>=1.11.0,<1.12.0)
18
+ Requires-Dist: xplan-tools (>=1.11.1,<1.12.0)
19
19
  Project-URL: Homepage, https://gitlab.opencode.de/xleitstelle/xmas-app
20
20
  Project-URL: Issues, https://gitlab.opencode.de/xleitstelle/xmas-app/-/issues
21
21
  Description-Content-Type: text/markdown
@@ -1,10 +1,10 @@
1
1
  [project]
2
2
  name = "xmas-app"
3
- version = "0.12.0"
3
+ version = "0.12.2"
4
4
  description = "The XLeitstelle model-driven application schema app."
5
5
  authors = [{ name = "Tobias Kraft", email = "tobias.kraft@gv.hamburg.de" }]
6
6
  classifiers = [
7
- "Development Status :: 3 - Alpha",
7
+ "Development Status :: 4 - Beta",
8
8
  "Framework :: Pydantic :: 2",
9
9
  "License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
10
10
  "Operating System :: OS Independent",
@@ -16,7 +16,7 @@ license-files = ["LICENSE"]
16
16
  dependencies = [
17
17
  "pydantic-settings>=2.0,<3.0",
18
18
  "pydantic-extra-types[semver]",
19
- "xplan-tools~=1.11.0",
19
+ "xplan-tools~=1.11.1",
20
20
  "nicegui>=2.20,<3.0",
21
21
  # "uvicorn[standard]>=0.29,<0.31"
22
22
  # "pygeoapi @ git+https://github.com/geopython/pygeoapi.git",
@@ -45,7 +45,7 @@ class Settings(BaseSettings):
45
45
  PGSERVICE: Optional[str] = None
46
46
 
47
47
  appschema: Literal["xplan", "xtrasse"]
48
- appschema_version: Literal["2.0", "5.4", "6.0"]
48
+ appschema_version: Literal["2.0", "5.4", "6.0", "6.1"]
49
49
  app_port: int
50
50
  db_type: str = "postgres" # defaulting to postgres
51
51
  app_mode: Literal["dev", "prod"] = "prod"
@@ -55,7 +55,7 @@ class Settings(BaseSettings):
55
55
  "https://registry.gdi-de.org/codelist/de.xleitstelle.xplanung"
56
56
  )
57
57
  qgis_plugin_name: str = "XMAS-Plugin"
58
- qgis_plugin_min_version: _VersionPydanticAnnotation = Version(major=0, minor=13)
58
+ qgis_plugin_min_version: _VersionPydanticAnnotation = Version(major=0, minor=14)
59
59
 
60
60
  model_config = SettingsConfigDict(env_file=".env", env_file_encoding="utf-8")
61
61
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes