Skip to content
Draft
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
!*.yaml
!*.toml
!*.json
!*.example

!LICENSE
!Makefile
Expand All @@ -50,3 +49,5 @@
!CHANGELOG.md
!CONTRIBUTING.md
!CODE_OF_CONDUCT.md

workrun/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ pipx upgrade socx-cli
> License-Expression: Apache-2.0
> Location: /home/skimhi/.project/git/users/sagikimhi/python/socx-worktree/develop/.venv/lib/python3.14/site-packages
> Editable project location: /home/skimhi/.project/git/users/sagikimhi/python/socx-worktree/develop
> Requires: click, copier, dynaconf, gitpython, hoptex, jinja2, paramiko, pip,
> Requires: click, copier, gitpython, hoptex, jinja2, paramiko, pip,
> platformdirs, plumbum, prompt-toolkit, psutil, pydantic, pygit2, python-box,
> rich, rich-click, sh, textual, textual-speedups, typer, uv, werkzeug
> Required-by:
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ socx = 'socx.__main__:main'
[project]
name = "socx-cli"
readme = "README.md"
version = "0.13.2"
version = "0.13.3"
license = "Apache-2.0"
authors = [{ name = "Sagi Kimhi", email = "sagi.kim5@gmail.com" }]
maintainers = [{ name = "Sagi Kimhi", email = "sagi.kim5@gmail.com" }]
Expand Down Expand Up @@ -67,7 +67,6 @@ dependencies = [
"textual",
"plumbum",
"pydantic",
"dynaconf<3.2.12",
"paramiko",
"werkzeug>=3.1.4",
"gitpython",
Expand Down
4 changes: 1 addition & 3 deletions src/socx/config/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@
from pathlib import Path
from collections import ChainMap

from dynaconf.utils import ensure_a_list
from socx.config._settings import ensure_a_list
from werkzeug.local import LocalProxy

from socx.config import converters
from socx.core import (
LOCAL_CONFIG_FILENAME,
LOCAL_CONFIG_FILE,
Expand Down Expand Up @@ -151,7 +150,6 @@ def get_settings(
return rv


converters.init()

_tokens = []

Expand Down
Loading
Loading