appligator 0.1.2__tar.gz → 0.2.0.dev1__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.
Files changed (22) hide show
  1. {appligator-0.1.2 → appligator-0.2.0.dev1}/PKG-INFO +4 -4
  2. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/cli.py +1 -1
  3. {appligator-0.1.2 → appligator-0.2.0.dev1}/pyproject.toml +4 -4
  4. {appligator-0.1.2 → appligator-0.2.0.dev1}/.gitignore +0 -0
  5. {appligator-0.1.2 → appligator-0.2.0.dev1}/LICENSE +0 -0
  6. {appligator-0.1.2 → appligator-0.2.0.dev1}/README.md +0 -0
  7. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/__init__.py +0 -0
  8. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/airflow/__init__.py +0 -0
  9. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/airflow/gen_dockerfile.py +0 -0
  10. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/airflow/gen_image.py +0 -0
  11. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/airflow/gen_workflow_dag.py +0 -0
  12. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/airflow/handlers/__init__.py +0 -0
  13. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/airflow/handlers/base_handler.py +0 -0
  14. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/airflow/handlers/k8s_handler.py +0 -0
  15. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/airflow/handlers/syn_python_handler.py +0 -0
  16. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/airflow/ir.py +0 -0
  17. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/airflow/models.py +0 -0
  18. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/airflow/renderer.py +0 -0
  19. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/airflow/run_step.py +0 -0
  20. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/airflow/templates/Dockerfile.pixi.j2 +0 -0
  21. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/config.py +0 -0
  22. {appligator-0.1.2 → appligator-0.2.0.dev1}/appligator/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: appligator
3
- Version: 0.1.2
3
+ Version: 0.2.0.dev1
4
4
  Summary: An application package bundler
5
5
  Project-URL: Documentation, https://eo-tools.github.io/eozilla
6
6
  Project-URL: Repository, https://github.com/eo-tools/eozilla
@@ -27,14 +27,14 @@ Classifier: Topic :: Scientific/Engineering
27
27
  Classifier: Topic :: Software Development
28
28
  Classifier: Typing :: Typed
29
29
  Requires-Python: >=3.11
30
- Requires-Dist: gavicore>=0.1.2
30
+ Requires-Dist: gavicore>=0.2.0.dev1
31
31
  Requires-Dist: jinja2
32
- Requires-Dist: procodile>=0.1.2
32
+ Requires-Dist: procodile>=0.2.0.dev1
33
33
  Requires-Dist: pydantic
34
34
  Requires-Dist: pyyaml
35
35
  Requires-Dist: tomli-w
36
36
  Requires-Dist: tomli; python_version < '3.11'
37
- Requires-Dist: typer
37
+ Requires-Dist: typer<1,>=0.26.0
38
38
  Description-Content-Type: text/markdown
39
39
 
40
40
  [![CI](https://github.com/eo-tools/eozilla/actions/workflows/ci.yml/badge.svg)](https://github.com/eo-tools/eozilla/actions/workflows/ci.yml)
@@ -322,7 +322,7 @@ def main(
322
322
  tolerations=effective_tolerations or None,
323
323
  )
324
324
  dag_file = dags_folder / f"{file_stem}.py"
325
- with dag_file.open("w") as stream:
325
+ with dag_file.open("w", encoding="utf-8") as stream:
326
326
  stream.write(
327
327
  f"# WARNING - THIS IS GENERATED CODE\n"
328
328
  f"# Generator: Eozilla Appligator v{__version__}\n"
@@ -4,7 +4,7 @@
4
4
 
5
5
  [project]
6
6
  name = "appligator"
7
- version = "0.1.2"
7
+ version = "0.2.0.dev1"
8
8
  description = "An application package bundler"
9
9
  readme = "README.md"
10
10
  authors = [
@@ -45,10 +45,10 @@ dependencies = [
45
45
  "pyyaml",
46
46
  "tomli-w",
47
47
  "tomli; python_version < '3.11'",
48
- "typer",
48
+ "typer >=0.26.0,<1",
49
49
  # local dependency
50
- "gavicore >=0.1.2",
51
- "procodile >=0.1.2",
50
+ "gavicore >=0.2.0.dev1",
51
+ "procodile >=0.2.0.dev1",
52
52
  ]
53
53
 
54
54
  [project.urls]
File without changes
File without changes
File without changes