Skip to content

Commit

Permalink
Remove dev containers, switch bulds to uv
Browse files Browse the repository at this point in the history
  • Loading branch information
acockburn committed Feb 19, 2025
1 parent 0360113 commit 5bf7fde
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 357 deletions.
29 changes: 0 additions & 29 deletions .devcontainer/Dockerfile

This file was deleted.

57 changes: 0 additions & 57 deletions .devcontainer/app_dir_testing/devcontainer.json

This file was deleted.

58 changes: 0 additions & 58 deletions .devcontainer/python 3.10/devcontainer.json

This file was deleted.

59 changes: 0 additions & 59 deletions .devcontainer/python 3.11/devcontainer.json

This file was deleted.

58 changes: 0 additions & 58 deletions .devcontainer/python 3.12/devcontainer.json

This file was deleted.

59 changes: 0 additions & 59 deletions .devcontainer/python 3.13/devcontainer.json

This file was deleted.

4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"request": "launch",
"module": "appdaemon",
"justMyCode": true,
"args": "-c /conf/ad_config/dev_test"
"args": "-c /home/appdaemon/ad_config/dev_test"
},
{
"name": "AppDaemon Appdir Test",
Expand All @@ -29,7 +29,7 @@
"request": "launch",
"module": "appdaemon",
"justMyCode": true,
"args": "-c /conf/ad_config/production"
"args": "-c /home/appdaemon/ad_config/production"
},
]
}
16 changes: 8 additions & 8 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
},
{
"label": "Build Package",
"command": "python",
"args": ["-m", "build"],
"command": "uv",
"args": ["build"],
"type": "shell",
"presentation":
{
Expand All @@ -64,8 +64,8 @@
},
{
"label": "Build Runtime Requirements",
"command": "pip-compile",
"args": ["--resolver=backtracking", "--upgrade", "pyproject.toml"],
"command": "uv",
"args": ["pip", "compile", "--resolver=backtracking", "--upgrade", "pyproject.toml"],
"type": "shell",
"presentation":
{
Expand All @@ -79,8 +79,8 @@
},
{
"label": "Build Dev Requirements",
"command": "pip-compile",
"args": ["--extra=dev", "--output-file=dev-requirements.txt", "--resolver=backtracking", "--upgrade", "pyproject.toml"],
"command": "uv",
"args": ["pip", "compile", "--extra=dev", "--output-file=dev-requirements.txt", "--resolver=backtracking", "--upgrade", "pyproject.toml"],
"type": "shell",
"presentation":
{
Expand All @@ -94,8 +94,8 @@
},
{
"label": "Build Doc Requirements",
"command": "pip-compile",
"args": ["--extra=doc", "--output-file=doc-requirements.txt", "--resolver=backtracking", "--upgrade", "pyproject.toml"],
"command": "uv",
"args": ["pip", "compile", "--extra=doc", "--output-file=doc-requirements.txt", "--resolver=backtracking", "--upgrade", "pyproject.toml"],
"type": "shell",
"presentation":
{
Expand Down
1 change: 0 additions & 1 deletion appdaemon/.git_ignore

This file was deleted.

Loading

0 comments on commit 5bf7fde

Please sign in to comment.