Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
201 changes: 99 additions & 102 deletions poetry.lock

Large diffs are not rendered by default.

17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,31 +73,31 @@ markdown-exec = {extras = ["ansi"], version = "^1.10.0"}
source = "git-tag"

[tool.poetry.dependencies]
python = "^3.10,<3.13"
python = "^3.10"
strenum = { version = "^0.4.15", python = "^3.10" }
addict = "^2.4.0"
azure-keyvault-keys = "^4.7.0"
boto3 = "^1.18.17"
cryptography = ">=3.4.7,<44.0.0"
cryptography = ">=41.0.0"
gitpython = "^3.1.30"
google-api-python-client = "^2.15.0"
google-api-python-client = "^2.88.0"
hvac = "2.3.0"
jinja2 = "^3.0.1"
jsonnet = "^0.21.0"
jsonschema = "^4.17.3"
python-gnupg = ">=0.4.7,<0.6.0"
pyyaml = "^6.0"
requests = "^2.28.2"
six = "^1.16.0"
six = ">=1.17.0"
toml = "^0.10.2"
yamllint = "^1.29.0"
azure-identity = "^1.12.0"
certifi = "*"
gitdb = "^4.0.10"
packaging = ">=23,<26"
typing-extensions = "^4.0.0"
kadet = "^0.3.0"
regex = "^2024.5.10"
packaging = ">=23.0"
typing-extensions = ">=4.8.0"
kadet = ">=0.3.2"
regex = ">=2025.7.34"
omegaconf = {version = "^2.4.0.dev3", optional = true}
reclass-rs = {version = "^0.8.0", optional = true }
gojsonnet = { version = "^0.21.0", optional = true }
Expand All @@ -108,6 +108,7 @@ python-box = "^7.2.0"
copier = "^9.3.1"
jsonpath-ng = "^1.7.0"
filetype = "^1.2.0"
cachetools = "^5.5.0"

[tool.poetry.extras]
gojsonnet = ["gojsonnet"]
Expand Down
151 changes: 151 additions & 0 deletions v2/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
*.manifest
*.spec

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
Pipfile.lock

# poetry
poetry.lock

# pdm
.pdm.toml
.pdm-python
.pdm-build/

# PEP 582
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# PyCharm
.idea/

# VS Code
.vscode/

# UV
.uv/

# Kapitan specific
compiled/
.kapitan_cache/

# OS specific
.DS_Store
Thumbs.db
24 changes: 24 additions & 0 deletions v2/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: check-merge-conflict
- id: debug-statements

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.8
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.2
hooks:
- id: mypy
additional_dependencies: [types-all]
args: [--strict]
Loading
Loading