envd 0.3.44__tar.gz → 0.3.46__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.
Potentially problematic release.
This version of envd might be problematic. Click here for more details.
- envd-0.3.46/.GIT_TAG_INFO +1 -0
- {envd-0.3.44 → envd-0.3.46}/.all-contributorsrc +9 -0
- {envd-0.3.44 → envd-0.3.46}/.gitignore +3 -0
- {envd-0.3.44 → envd-0.3.46}/.golangci.yml +1 -1
- envd-0.3.46/.lycheeignore +7 -0
- {envd-0.3.44 → envd-0.3.46}/CHANGELOG.md +18 -0
- {envd-0.3.44 → envd-0.3.46}/Makefile +8 -7
- {envd-0.3.44 → envd-0.3.46}/PKG-INFO +3 -2
- {envd-0.3.44 → envd-0.3.46}/README.md +2 -1
- {envd-0.3.44 → envd-0.3.46}/envd/api/v0/config.py +1 -1
- {envd-0.3.44 → envd-0.3.46}/envd/api/v0/io.py +0 -1
- {envd-0.3.44 → envd-0.3.46}/envd/api/v0/runtime.py +1 -1
- {envd-0.3.44 → envd-0.3.46}/envd/api/v1/install.py +17 -15
- {envd-0.3.44 → envd-0.3.46}/envd/api/v1/runtime.py +1 -1
- {envd-0.3.44 → envd-0.3.46}/envd.egg-info/PKG-INFO +3 -2
- {envd-0.3.44 → envd-0.3.46}/envd.egg-info/SOURCES.txt +3 -1
- envd-0.3.46/go.mod +211 -0
- {envd-0.3.44 → envd-0.3.46}/go.sum +283 -258
- envd-0.3.46/lychee.toml +4 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/debug_llb.go +6 -29
- {envd-0.3.44 → envd-0.3.46}/pkg/app/image_prune.go +2 -2
- {envd-0.3.44 → envd-0.3.46}/pkg/app/image_prune_test.go +3 -3
- {envd-0.3.44 → envd-0.3.46}/pkg/app/prune.go +4 -2
- {envd-0.3.44 → envd-0.3.46}/pkg/app/up.go +26 -3
- {envd-0.3.44 → envd-0.3.46}/pkg/autocomplete/zsh.go +1 -1
- {envd-0.3.44 → envd-0.3.46}/pkg/builder/build.go +1 -1
- {envd-0.3.44 → envd-0.3.46}/pkg/builder/util.go +4 -2
- {envd-0.3.44 → envd-0.3.46}/pkg/buildkitd/buildkitd.go +9 -5
- {envd-0.3.44 → envd-0.3.46}/pkg/buildkitd/mock/mock.go +4 -4
- {envd-0.3.44 → envd-0.3.46}/pkg/driver/client.go +3 -3
- {envd-0.3.44 → envd-0.3.46}/pkg/driver/docker/docker.go +31 -23
- {envd-0.3.44 → envd-0.3.46}/pkg/driver/nerdctl/nerdctl.go +5 -4
- {envd-0.3.44 → envd-0.3.46}/pkg/envd/docker.go +38 -35
- envd-0.3.46/pkg/envd/docker_test.go +164 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/envd/engine.go +2 -2
- {envd-0.3.44 → envd-0.3.46}/pkg/envd/envdserver.go +3 -3
- {envd-0.3.44 → envd-0.3.46}/pkg/envd/types.go +1 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/compile.go +2 -2
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/system.go +5 -3
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/compile.go +2 -2
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/compileui/display.go +4 -4
- {envd-0.3.44 → envd-0.3.46}/pkg/syncthing/device.go +1 -1
- {envd-0.3.44 → envd-0.3.46}/pkg/types/envd.go +5 -3
- envd-0.3.46/pyproject.toml +12 -0
- {envd-0.3.44 → envd-0.3.46}/setup.py +5 -6
- envd-0.3.44/.GIT_TAG_INFO +0 -1
- envd-0.3.44/.markdown-lint.json +0 -7
- envd-0.3.44/go.mod +0 -203
- envd-0.3.44/pyproject.toml +0 -3
- {envd-0.3.44 → envd-0.3.46}/.editorconfig +0 -0
- {envd-0.3.44 → envd-0.3.46}/.goreleaser.yaml +0 -0
- {envd-0.3.44 → envd-0.3.46}/.pre-commit-config.yaml +0 -0
- {envd-0.3.44 → envd-0.3.46}/.vscode/launch.json +0 -0
- {envd-0.3.44 → envd-0.3.46}/CODEOWNERS +0 -0
- {envd-0.3.44 → envd-0.3.46}/CODE_OF_CONDUCT.md +0 -0
- {envd-0.3.44 → envd-0.3.46}/LICENSE +0 -0
- {envd-0.3.44 → envd-0.3.46}/MANIFEST.in +0 -0
- {envd-0.3.44 → envd-0.3.46}/OWNERS +0 -0
- {envd-0.3.44 → envd-0.3.46}/base-images/.dockerignore +0 -0
- {envd-0.3.44 → envd-0.3.46}/base-images/build.sh +0 -0
- {envd-0.3.44 → envd-0.3.46}/base-images/envd/build.sh +0 -0
- {envd-0.3.44 → envd-0.3.46}/base-images/envd/envd-daemonless.Dockerfile +0 -0
- {envd-0.3.44 → envd-0.3.46}/base-images/envd/envd.Dockerfile +0 -0
- {envd-0.3.44 → envd-0.3.46}/base-images/envd-sshd/envd-sshd.Dockerfile +0 -0
- {envd-0.3.44 → envd-0.3.46}/base-images/envd-starship/envd-starship.Dockerfile +0 -0
- {envd-0.3.44 → envd-0.3.46}/base-images/julia1.8rc1-ubuntu20.04.Dockerfile +0 -0
- {envd-0.3.44 → envd-0.3.46}/base-images/r4.2.Dockerfile +0 -0
- {envd-0.3.44 → envd-0.3.46}/base-images/remote-cache/build-and-push-remote-cache.sh +0 -0
- {envd-0.3.44 → envd-0.3.46}/base-images/remote-cache/build.envd +0 -0
- {envd-0.3.44 → envd-0.3.46}/cmd/envd/main.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/cmd/envd-sshd/main.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/envd/api/v0/__init__.py +0 -0
- {envd-0.3.44 → envd-0.3.46}/envd/api/v0/install.py +0 -0
- {envd-0.3.44 → envd-0.3.46}/envd/api/v1/__init__.py +0 -0
- {envd-0.3.44 → envd-0.3.46}/envd/api/v1/config.py +0 -0
- {envd-0.3.44 → envd-0.3.46}/envd/api/v1/io.py +0 -0
- {envd-0.3.44 → envd-0.3.46}/envd/api.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/envd.egg-info/dependency_links.txt +0 -0
- {envd-0.3.44 → envd-0.3.46}/envd.egg-info/not-zip-safe +0 -0
- {envd-0.3.44 → envd-0.3.46}/envd.egg-info/top_level.txt +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/app.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/bootstrap.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/build/build.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/build.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/completion.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/const.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/context.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/context_create.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/context_ls.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/context_rm.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/context_use.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/debug.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/destroy.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/env.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/env_describe.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/env_ls.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/exec.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/formatter/data.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/formatter/json/context.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/formatter/json/env.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/formatter/json/image.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/formatter/json/print.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/formatter/json/version.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/formatter/table/context.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/formatter/table/env.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/formatter/table/image.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/formatter/table/version.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/image.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/image_describe.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/image_remove.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/init.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/interactive.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/login.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/pause.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/reference.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/resume.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/run.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/telemetry/reporter.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/template/julia.envd +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/template/r.envd +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/top.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/app/version.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/autocomplete/bash.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/autocomplete/fish.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/builder/build_func.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/builder/builder.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/builder/builder_suite_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/builder/builder_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/builder/dep_check.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/builder/err.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/builder/types.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/builder/util_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/buildkitd/print.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/config/config.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/data/datasource.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/data/envd.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/driver/docker/docker_suite_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/driver/docker/docker_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/driver/docker/label.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/driver/nerdctl/buildkit.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/driver/stats_type.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/editor/vscode/types.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/editor/vscode/util.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/editor/vscode/vscode.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/editor/vscode/vscode_suite_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/editor/vscode/vscode_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/envd/factory.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/flag/consts.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/home/auth.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/home/auth_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/home/cache.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/home/config.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/home/context.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/home/context_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/home/data.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/home/home_suite_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/home/manager.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/home/manager_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/interpreter.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/mock/mock.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/builtin/builtin.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/config/config.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/config/const.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/data/const.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/data/rule.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/data/util.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/install/const.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/install/install.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/interpreter.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/interpreter_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/io/const.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/io/io.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/runtime/const.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/runtime/runtime.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/starlark_suite_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/testdata/test.envd +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/universe/const.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v0/universe/universe.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/builtin/builtin.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/config/config.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/config/const.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/data/const.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/data/rule.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/data/util.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/install/const.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/install/install.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/interpreter.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/interpreter_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/io/const.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/io/io.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/runtime/const.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/runtime/runtime.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/starlark_suite_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/testdata/test.envd +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/universe/const.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/frontend/starlark/v1/universe/universe.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/graph.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/types.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/util.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/cache.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/checker.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/conda.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/consts.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/custom.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/editor.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/editor_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/fs.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/git.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/install-conda.sh +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/install-mamba.sh +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/interface.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/julia.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/python.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/r.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/shell.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/supervisor.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/types.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/user.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/util.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v0/util_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/cache.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/checker.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/conda.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/consts.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/editor.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/editor_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/fs.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/get_conda.sh +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/git.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/install_conda.sh +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/interface.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/julia.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/julia.sh +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/python.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/r.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/shell.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/supervisor.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/system.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/types.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/user.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/util.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/ir/v1/util_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/lang/version/version.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/metrics/collector.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/metrics/docker_collector.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/metrics/helper.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/metrics/model.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/metrics/widget.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/compileui/mock/mock.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/compileui/term.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/compileui/term_windows.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/compileui/trace.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/compileui/types.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/mode/mode.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/progressui/display.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/progressui/display_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/progressui/printer.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/progressui/term.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/progressui/term_windows.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/progresswriter/printer.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/progress/progresswriter/writer.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/remote/sshd/os.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/remote/sshd/sshd.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/shell/install.sh +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/shell/zsh.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/shell/zsh_suite_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/shell/zsh_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/shell/zshrc +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/ssh/config/entry.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/ssh/config/key.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/ssh/config/ssh_config.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/ssh/config/ssh_config_suite_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/ssh/config/ssh_config_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/ssh/copy.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/ssh/ssh.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/syncthing/client.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/syncthing/config.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/syncthing/event.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/syncthing/file.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/syncthing/folder.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/syncthing/install.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/syncthing/syncthing.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/syncthing/syncthing_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/syncthing/util.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/types/container.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/types/label.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/types/types_suite_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/buildkitutil/buildkit.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/buildkitutil/buildkit_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/envutil/env.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/envutil/env_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/fileutil/file.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/fileutil/file_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/fileutil/namegenerator.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/netutil/netutil.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/netutil/netutil_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/osutil/wsl.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/runtimeutil/runtimeutil.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/starlarkutil/stringslice.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/starlarkutil/stringslice_test.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/util/ziputil/unzip.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/pkg/version/version.go +0 -0
- {envd-0.3.44 → envd-0.3.46}/scripts/envd-daemonless.sh +0 -0
- {envd-0.3.44 → envd-0.3.46}/setup.cfg +0 -0
- {envd-0.3.44 → envd-0.3.46}/typos.toml +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
v0.3.46
|
|
@@ -628,6 +628,15 @@
|
|
|
628
628
|
"contributions": [
|
|
629
629
|
"code"
|
|
630
630
|
]
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"login": "arugal",
|
|
634
|
+
"name": "zhang-wei",
|
|
635
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/26432832?v=4",
|
|
636
|
+
"profile": "http://blogs.zhangwei.asia",
|
|
637
|
+
"contributions": [
|
|
638
|
+
"code"
|
|
639
|
+
]
|
|
631
640
|
}
|
|
632
641
|
],
|
|
633
642
|
"contributorsPerLine": 7,
|
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.45 (2024-01-24)
|
|
4
|
+
|
|
5
|
+
* [639c188](https://github.com/tensorchord/envd/commit/639c188536181c1d621bd45d04b2243fef72c467) fix: go-git security issue GHSA-mw99-9chc-xw7r (#1844)
|
|
6
|
+
* [457f5fd](https://github.com/tensorchord/envd/commit/457f5fd9a0509f5ef64ce7ea9ce5a2cea601b85e) fix: allow cli --gpus to override config gpu (#1843)
|
|
7
|
+
|
|
8
|
+
### Contributors
|
|
9
|
+
|
|
10
|
+
* Keming
|
|
11
|
+
|
|
12
|
+
## v0.3.44 (2024-01-16)
|
|
13
|
+
|
|
14
|
+
* [1f927d7](https://github.com/tensorchord/envd/commit/1f927d7813a687123e637d59c65417b8780088cf) fix: fix comment in /pkg/home/auth.go. (#1831)
|
|
15
|
+
* [7b49cc3](https://github.com/tensorchord/envd/commit/7b49cc3748d6579acfeffdd8a92e03b1291582ee) feat(bootstrap): support resume (#1828)
|
|
16
|
+
|
|
17
|
+
### Contributors
|
|
18
|
+
|
|
19
|
+
* Shao Wang
|
|
20
|
+
|
|
3
21
|
## v0.3.43 (2023-12-28)
|
|
4
22
|
|
|
5
23
|
* [3394589](https://github.com/tensorchord/envd/commit/3394589f9b57fd12d87661692c73564ba9f10eee) fix: set up python in pypi release step (#1825)
|
|
@@ -176,7 +176,7 @@ test-local:
|
|
|
176
176
|
@go test -v -race -coverprofile=coverage.out ./...
|
|
177
177
|
|
|
178
178
|
test: generate ## Run the tests
|
|
179
|
-
@go test -race -coverpkg=./pkg/... -coverprofile=coverage.out
|
|
179
|
+
@go test -race -coverpkg=./pkg/... -coverprofile=coverage.out ./pkg/...
|
|
180
180
|
@go tool cover -func coverage.out | tail -n 1 | awk '{ print "Total coverage: " $$3 }'
|
|
181
181
|
|
|
182
182
|
e2e-test:
|
|
@@ -254,11 +254,12 @@ fmt: ## Run go fmt against code.
|
|
|
254
254
|
vet: ## Run go vet against code.
|
|
255
255
|
go vet ./...
|
|
256
256
|
|
|
257
|
-
|
|
258
|
-
@pip install -q
|
|
257
|
+
ruff-install:
|
|
258
|
+
@pip install -q ruff
|
|
259
259
|
|
|
260
|
-
envd-lint:
|
|
261
|
-
|
|
260
|
+
envd-lint: ruff-install
|
|
261
|
+
@ruff check .
|
|
262
262
|
|
|
263
|
-
envd-fmt:
|
|
264
|
-
|
|
263
|
+
envd-fmt: ruff-install
|
|
264
|
+
@ruff format .
|
|
265
|
+
@ruff check --fix .
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: envd
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.46
|
|
4
4
|
Summary: A development environment management tool for data scientists.
|
|
5
5
|
Home-page: https://github.com/tensorchord/envd
|
|
6
6
|
Author: TensorChord
|
|
@@ -396,9 +396,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
396
396
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/xieydd"><img src="https://avatars.githubusercontent.com/u/20329697?v=4?s=70" width="70px;" alt="xieydd"/><br /><sub><b>xieydd</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xieydd" title="Code">💻</a></td>
|
|
397
397
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/xing0821"><img src="https://avatars.githubusercontent.com/u/54933318?v=4?s=70" width="70px;" alt="xing0821"/><br /><sub><b>xing0821</b></sub></a><br /><a href="#ideas-xing0821" title="Ideas, Planning, & Feedback">🤔</a> <a href="#userTesting-xing0821" title="User Testing">📓</a> <a href="https://github.com/tensorchord/envd/commits?author=xing0821" title="Code">💻</a></td>
|
|
398
398
|
<td align="center" valign="top" width="14.28%"><a href="https://xxchan.github.io"><img src="https://avatars.githubusercontent.com/u/37948597?v=4?s=70" width="70px;" alt="xxchan"/><br /><sub><b>xxchan</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xxchan" title="Documentation">📖</a></td>
|
|
399
|
-
<td align="center" valign="top" width="14.28%"><a href="
|
|
399
|
+
<td align="center" valign="top" width="14.28%"><a href="http://blogs.zhangwei.asia"><img src="https://avatars.githubusercontent.com/u/26432832?v=4?s=70" width="70px;" alt="zhang-wei"/><br /><sub><b>zhang-wei</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=arugal" title="Code">💻</a></td>
|
|
400
400
|
</tr>
|
|
401
401
|
<tr>
|
|
402
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhyon404"><img src="https://avatars.githubusercontent.com/u/32242529?v=4?s=70" width="70px;" alt="zhyon404"/><br /><sub><b>zhyon404</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=zhyon404" title="Code">💻</a></td>
|
|
402
403
|
<td align="center" valign="top" width="14.28%"><a href="https://www.homeboyc.cn/"><img src="https://avatars.githubusercontent.com/u/22193008?v=4?s=70" width="70px;" alt="杨成锴"/><br /><sub><b>杨成锴</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=asjdf" title="Code">💻</a></td>
|
|
403
404
|
</tr>
|
|
404
405
|
</tbody>
|
|
@@ -373,9 +373,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
373
373
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/xieydd"><img src="https://avatars.githubusercontent.com/u/20329697?v=4?s=70" width="70px;" alt="xieydd"/><br /><sub><b>xieydd</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xieydd" title="Code">💻</a></td>
|
|
374
374
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/xing0821"><img src="https://avatars.githubusercontent.com/u/54933318?v=4?s=70" width="70px;" alt="xing0821"/><br /><sub><b>xing0821</b></sub></a><br /><a href="#ideas-xing0821" title="Ideas, Planning, & Feedback">🤔</a> <a href="#userTesting-xing0821" title="User Testing">📓</a> <a href="https://github.com/tensorchord/envd/commits?author=xing0821" title="Code">💻</a></td>
|
|
375
375
|
<td align="center" valign="top" width="14.28%"><a href="https://xxchan.github.io"><img src="https://avatars.githubusercontent.com/u/37948597?v=4?s=70" width="70px;" alt="xxchan"/><br /><sub><b>xxchan</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xxchan" title="Documentation">📖</a></td>
|
|
376
|
-
<td align="center" valign="top" width="14.28%"><a href="
|
|
376
|
+
<td align="center" valign="top" width="14.28%"><a href="http://blogs.zhangwei.asia"><img src="https://avatars.githubusercontent.com/u/26432832?v=4?s=70" width="70px;" alt="zhang-wei"/><br /><sub><b>zhang-wei</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=arugal" title="Code">💻</a></td>
|
|
377
377
|
</tr>
|
|
378
378
|
<tr>
|
|
379
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhyon404"><img src="https://avatars.githubusercontent.com/u/32242529?v=4?s=70" width="70px;" alt="zhyon404"/><br /><sub><b>zhyon404</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=zhyon404" title="Code">💻</a></td>
|
|
379
380
|
<td align="center" valign="top" width="14.28%"><a href="https://www.homeboyc.cn/"><img src="https://avatars.githubusercontent.com/u/22193008?v=4?s=70" width="70px;" alt="杨成锴"/><br /><sub><b>杨成锴</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=asjdf" title="Code">💻</a></td>
|
|
380
381
|
</tr>
|
|
381
382
|
</tbody>
|
|
@@ -27,7 +27,7 @@ v1 is experimental and may change in the future. Make sure to freeze the envd ve
|
|
|
27
27
|
:::
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
|
-
from typing import
|
|
30
|
+
from typing import Optional, Sequence
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
def python(version: str = "3.9"):
|
|
@@ -57,59 +57,61 @@ def julia():
|
|
|
57
57
|
"""Install Julia."""
|
|
58
58
|
|
|
59
59
|
|
|
60
|
-
def apt_packages(name:
|
|
60
|
+
def apt_packages(name: Sequence[str] = ()):
|
|
61
61
|
"""Install package using the system package manager (apt on Ubuntu).
|
|
62
62
|
|
|
63
63
|
Args:
|
|
64
|
-
name (
|
|
64
|
+
name (Sequence[str]): apt package name list
|
|
65
65
|
"""
|
|
66
66
|
|
|
67
67
|
|
|
68
68
|
def python_packages(
|
|
69
|
-
name:
|
|
69
|
+
name: Sequence[str] = (), requirements: str = "", local_wheels: Sequence[str] = ()
|
|
70
70
|
):
|
|
71
71
|
"""Install python package by pip.
|
|
72
72
|
|
|
73
73
|
Args:
|
|
74
|
-
name (
|
|
74
|
+
name (Sequence[str]): package name list
|
|
75
75
|
requirements (str): requirements file path
|
|
76
|
-
local_wheels (
|
|
76
|
+
local_wheels (Sequence[str]): local wheels
|
|
77
77
|
(wheel files should be placed under the current directory)
|
|
78
78
|
"""
|
|
79
79
|
|
|
80
80
|
|
|
81
|
-
def conda_packages(
|
|
81
|
+
def conda_packages(
|
|
82
|
+
name: Sequence[str] = (), channel: Sequence[str] = (), env_file: str = ""
|
|
83
|
+
):
|
|
82
84
|
"""Install python package by Conda
|
|
83
85
|
|
|
84
86
|
Args:
|
|
85
|
-
name (
|
|
87
|
+
name (Sequence[str]): List of package names with optional version assignment,
|
|
86
88
|
such as ['pytorch', 'tensorflow==1.13.0']
|
|
87
|
-
channel (
|
|
89
|
+
channel (Sequence[str]): additional channels
|
|
88
90
|
env_file (str): conda env file path
|
|
89
91
|
"""
|
|
90
92
|
|
|
91
93
|
|
|
92
|
-
def r_packages(name:
|
|
94
|
+
def r_packages(name: Sequence[str]):
|
|
93
95
|
"""Install R packages by R package manager.
|
|
94
96
|
|
|
95
97
|
Args:
|
|
96
|
-
name (
|
|
98
|
+
name (Sequence[str]): package name list
|
|
97
99
|
"""
|
|
98
100
|
|
|
99
101
|
|
|
100
|
-
def julia_packages(name:
|
|
102
|
+
def julia_packages(name: Sequence[str]):
|
|
101
103
|
"""Install Julia packages.
|
|
102
104
|
|
|
103
105
|
Args:
|
|
104
|
-
name (
|
|
106
|
+
name (Sequence[str]): List of Julia packages
|
|
105
107
|
"""
|
|
106
108
|
|
|
107
109
|
|
|
108
|
-
def vscode_extensions(name:
|
|
110
|
+
def vscode_extensions(name: Sequence[str]):
|
|
109
111
|
"""Install VS Code extensions
|
|
110
112
|
|
|
111
113
|
Args:
|
|
112
|
-
name (
|
|
114
|
+
name (Sequence[str]): extension names, such as ['ms-python.python']
|
|
113
115
|
"""
|
|
114
116
|
|
|
115
117
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: envd
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.46
|
|
4
4
|
Summary: A development environment management tool for data scientists.
|
|
5
5
|
Home-page: https://github.com/tensorchord/envd
|
|
6
6
|
Author: TensorChord
|
|
@@ -396,9 +396,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
396
396
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/xieydd"><img src="https://avatars.githubusercontent.com/u/20329697?v=4?s=70" width="70px;" alt="xieydd"/><br /><sub><b>xieydd</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xieydd" title="Code">💻</a></td>
|
|
397
397
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/xing0821"><img src="https://avatars.githubusercontent.com/u/54933318?v=4?s=70" width="70px;" alt="xing0821"/><br /><sub><b>xing0821</b></sub></a><br /><a href="#ideas-xing0821" title="Ideas, Planning, & Feedback">🤔</a> <a href="#userTesting-xing0821" title="User Testing">📓</a> <a href="https://github.com/tensorchord/envd/commits?author=xing0821" title="Code">💻</a></td>
|
|
398
398
|
<td align="center" valign="top" width="14.28%"><a href="https://xxchan.github.io"><img src="https://avatars.githubusercontent.com/u/37948597?v=4?s=70" width="70px;" alt="xxchan"/><br /><sub><b>xxchan</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xxchan" title="Documentation">📖</a></td>
|
|
399
|
-
<td align="center" valign="top" width="14.28%"><a href="
|
|
399
|
+
<td align="center" valign="top" width="14.28%"><a href="http://blogs.zhangwei.asia"><img src="https://avatars.githubusercontent.com/u/26432832?v=4?s=70" width="70px;" alt="zhang-wei"/><br /><sub><b>zhang-wei</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=arugal" title="Code">💻</a></td>
|
|
400
400
|
</tr>
|
|
401
401
|
<tr>
|
|
402
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhyon404"><img src="https://avatars.githubusercontent.com/u/32242529?v=4?s=70" width="70px;" alt="zhyon404"/><br /><sub><b>zhyon404</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=zhyon404" title="Code">💻</a></td>
|
|
402
403
|
<td align="center" valign="top" width="14.28%"><a href="https://www.homeboyc.cn/"><img src="https://avatars.githubusercontent.com/u/22193008?v=4?s=70" width="70px;" alt="杨成锴"/><br /><sub><b>杨成锴</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=asjdf" title="Code">💻</a></td>
|
|
403
404
|
</tr>
|
|
404
405
|
</tbody>
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
.gitignore
|
|
5
5
|
.golangci.yml
|
|
6
6
|
.goreleaser.yaml
|
|
7
|
-
.
|
|
7
|
+
.lycheeignore
|
|
8
8
|
.pre-commit-config.yaml
|
|
9
9
|
CHANGELOG.md
|
|
10
10
|
CODEOWNERS
|
|
@@ -16,6 +16,7 @@ OWNERS
|
|
|
16
16
|
README.md
|
|
17
17
|
go.mod
|
|
18
18
|
go.sum
|
|
19
|
+
lychee.toml
|
|
19
20
|
pyproject.toml
|
|
20
21
|
setup.py
|
|
21
22
|
typos.toml
|
|
@@ -129,6 +130,7 @@ pkg/editor/vscode/vscode.go
|
|
|
129
130
|
pkg/editor/vscode/vscode_suite_test.go
|
|
130
131
|
pkg/editor/vscode/vscode_test.go
|
|
131
132
|
pkg/envd/docker.go
|
|
133
|
+
pkg/envd/docker_test.go
|
|
132
134
|
pkg/envd/engine.go
|
|
133
135
|
pkg/envd/envdserver.go
|
|
134
136
|
pkg/envd/factory.go
|
envd-0.3.46/go.mod
ADDED
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
module github.com/tensorchord/envd
|
|
2
|
+
|
|
3
|
+
go 1.22.6
|
|
4
|
+
|
|
5
|
+
toolchain go1.23.4
|
|
6
|
+
|
|
7
|
+
require (
|
|
8
|
+
github.com/Pallinder/go-randomdata v1.2.0
|
|
9
|
+
github.com/bcicen/ctop v0.7.7
|
|
10
|
+
github.com/charmbracelet/bubbletea v0.24.2
|
|
11
|
+
github.com/charmbracelet/lipgloss v0.8.0
|
|
12
|
+
github.com/cockroachdb/errors v1.11.1
|
|
13
|
+
github.com/containerd/console v1.0.4
|
|
14
|
+
github.com/containerd/log v0.1.0
|
|
15
|
+
github.com/containers/image/v5 v5.33.0
|
|
16
|
+
github.com/creack/pty v1.1.18
|
|
17
|
+
github.com/docker/cli v27.4.0-rc.2+incompatible
|
|
18
|
+
github.com/docker/docker v27.4.0-rc.2+incompatible
|
|
19
|
+
github.com/docker/go-connections v0.5.0
|
|
20
|
+
github.com/docker/go-units v0.5.0
|
|
21
|
+
github.com/gizak/termui/v3 v3.1.0
|
|
22
|
+
github.com/gliderlabs/ssh v0.3.8
|
|
23
|
+
github.com/go-git/go-git/v5 v5.13.1
|
|
24
|
+
github.com/golang/mock v1.6.0
|
|
25
|
+
github.com/google/uuid v1.6.0
|
|
26
|
+
github.com/hashicorp/go-getter v1.7.5
|
|
27
|
+
github.com/mattn/go-isatty v0.0.19
|
|
28
|
+
github.com/moby/buildkit v0.18.2
|
|
29
|
+
github.com/moby/term v0.5.0
|
|
30
|
+
github.com/morikuni/aec v1.0.0
|
|
31
|
+
github.com/olekukonko/tablewriter v0.0.5
|
|
32
|
+
github.com/onsi/ginkgo/v2 v2.19.0
|
|
33
|
+
github.com/onsi/gomega v1.34.1
|
|
34
|
+
github.com/opencontainers/go-digest v1.0.0
|
|
35
|
+
github.com/opencontainers/image-spec v1.1.0
|
|
36
|
+
github.com/pkg/errors v0.9.1
|
|
37
|
+
github.com/pkg/sftp v1.13.6
|
|
38
|
+
github.com/schollz/progressbar/v3 v3.13.1
|
|
39
|
+
github.com/segmentio/analytics-go/v3 v3.2.1
|
|
40
|
+
github.com/sirupsen/logrus v1.9.3
|
|
41
|
+
github.com/spf13/viper v1.16.0
|
|
42
|
+
github.com/stretchr/testify v1.10.0
|
|
43
|
+
github.com/syncthing/syncthing v1.23.7
|
|
44
|
+
github.com/tensorchord/envd-server v0.0.27
|
|
45
|
+
github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea
|
|
46
|
+
github.com/tonistiigi/vt100 v0.0.0-20240514184818-90bafcd6abab
|
|
47
|
+
github.com/urfave/cli/v2 v2.25.7
|
|
48
|
+
go.starlark.net v0.0.0-20220328144851-d1966c6b9fcd
|
|
49
|
+
golang.org/x/crypto v0.32.0
|
|
50
|
+
golang.org/x/sync v0.10.0
|
|
51
|
+
golang.org/x/term v0.28.0
|
|
52
|
+
golang.org/x/time v0.6.0
|
|
53
|
+
)
|
|
54
|
+
|
|
55
|
+
require (
|
|
56
|
+
cloud.google.com/go v0.112.0 // indirect
|
|
57
|
+
cloud.google.com/go/compute/metadata v0.5.0 // indirect
|
|
58
|
+
cloud.google.com/go/iam v1.1.5 // indirect
|
|
59
|
+
cloud.google.com/go/storage v1.36.0 // indirect
|
|
60
|
+
dario.cat/mergo v1.0.1 // indirect
|
|
61
|
+
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
|
|
62
|
+
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
|
|
63
|
+
github.com/BurntSushi/toml v1.4.0 // indirect
|
|
64
|
+
github.com/Microsoft/go-winio v0.6.2 // indirect
|
|
65
|
+
github.com/ProtonMail/go-crypto v1.1.3 // indirect
|
|
66
|
+
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
|
|
67
|
+
github.com/aws/aws-sdk-go v1.44.122 // indirect
|
|
68
|
+
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
|
|
69
|
+
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
|
|
70
|
+
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
|
|
71
|
+
github.com/cloudflare/circl v1.3.7 // indirect
|
|
72
|
+
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
|
|
73
|
+
github.com/cockroachdb/redact v1.1.5 // indirect
|
|
74
|
+
github.com/containerd/containerd v1.7.24 // indirect
|
|
75
|
+
github.com/containerd/containerd/api v1.7.19 // indirect
|
|
76
|
+
github.com/containerd/continuity v0.4.5 // indirect
|
|
77
|
+
github.com/containerd/errdefs v0.3.0 // indirect
|
|
78
|
+
github.com/containerd/platforms v0.2.1 // indirect
|
|
79
|
+
github.com/containerd/ttrpc v1.2.5 // indirect
|
|
80
|
+
github.com/containerd/typeurl/v2 v2.2.3 // indirect
|
|
81
|
+
github.com/containers/libtrust v0.0.0-20230121012942-c1716e8a8d01 // indirect
|
|
82
|
+
github.com/containers/ocicrypt v1.2.0 // indirect
|
|
83
|
+
github.com/containers/storage v1.56.0 // indirect
|
|
84
|
+
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
|
|
85
|
+
github.com/cyphar/filepath-securejoin v0.3.6 // indirect
|
|
86
|
+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
87
|
+
github.com/distribution/reference v0.6.0 // indirect
|
|
88
|
+
github.com/docker/distribution v2.8.3+incompatible // indirect
|
|
89
|
+
github.com/docker/docker-credential-helpers v0.8.2 // indirect
|
|
90
|
+
github.com/emirpasic/gods v1.18.1 // indirect
|
|
91
|
+
github.com/felixge/httpsnoop v1.0.4 // indirect
|
|
92
|
+
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
93
|
+
github.com/getsentry/sentry-go v0.18.0 // indirect
|
|
94
|
+
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
|
|
95
|
+
github.com/go-git/go-billy/v5 v5.6.1 // indirect
|
|
96
|
+
github.com/go-logr/logr v1.4.2 // indirect
|
|
97
|
+
github.com/go-logr/stdr v1.2.2 // indirect
|
|
98
|
+
github.com/go-ole/go-ole v1.2.6 // indirect
|
|
99
|
+
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
|
|
100
|
+
github.com/gofrs/flock v0.12.1 // indirect
|
|
101
|
+
github.com/gogo/protobuf v1.3.2 // indirect
|
|
102
|
+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
103
|
+
github.com/golang/protobuf v1.5.4 // indirect
|
|
104
|
+
github.com/golang/snappy v0.0.4 // indirect
|
|
105
|
+
github.com/google/go-cmp v0.6.0 // indirect
|
|
106
|
+
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
|
|
107
|
+
github.com/google/s2a-go v0.1.7 // indirect
|
|
108
|
+
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
|
|
109
|
+
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
|
|
110
|
+
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
|
|
111
|
+
github.com/gorilla/mux v1.8.1 // indirect
|
|
112
|
+
github.com/greatroar/blobloom v0.7.2 // indirect
|
|
113
|
+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
|
|
114
|
+
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
115
|
+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
|
|
116
|
+
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
117
|
+
github.com/hashicorp/go-safetemp v1.0.0 // indirect
|
|
118
|
+
github.com/hashicorp/go-version v1.6.0 // indirect
|
|
119
|
+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
|
|
120
|
+
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
121
|
+
github.com/in-toto/in-toto-golang v0.9.0 // indirect
|
|
122
|
+
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
|
|
123
|
+
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
|
124
|
+
github.com/kevinburke/ssh_config v1.2.0 // indirect
|
|
125
|
+
github.com/klauspost/compress v1.17.11 // indirect
|
|
126
|
+
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
|
|
127
|
+
github.com/kr/fs v0.1.0 // indirect
|
|
128
|
+
github.com/kr/pretty v0.3.1 // indirect
|
|
129
|
+
github.com/kr/text v0.2.0 // indirect
|
|
130
|
+
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
|
131
|
+
github.com/magiconair/properties v1.8.7 // indirect
|
|
132
|
+
github.com/mattn/go-localereader v0.0.1 // indirect
|
|
133
|
+
github.com/mattn/go-runewidth v0.0.16 // indirect
|
|
134
|
+
github.com/minio/sha256-simd v1.0.1 // indirect
|
|
135
|
+
github.com/miscreant/miscreant.go v0.0.0-20200214223636-26d376326b75 // indirect
|
|
136
|
+
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
|
|
137
|
+
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
138
|
+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
|
|
139
|
+
github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7 // indirect
|
|
140
|
+
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
141
|
+
github.com/moby/docker-image-spec v1.3.1 // indirect
|
|
142
|
+
github.com/moby/locker v1.0.1 // indirect
|
|
143
|
+
github.com/moby/patternmatcher v0.6.0 // indirect
|
|
144
|
+
github.com/moby/sys/capability v0.3.0 // indirect
|
|
145
|
+
github.com/moby/sys/mountinfo v0.7.2 // indirect
|
|
146
|
+
github.com/moby/sys/signal v0.7.1 // indirect
|
|
147
|
+
github.com/moby/sys/user v0.3.0 // indirect
|
|
148
|
+
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect
|
|
149
|
+
github.com/muesli/cancelreader v0.2.2 // indirect
|
|
150
|
+
github.com/muesli/reflow v0.3.0 // indirect
|
|
151
|
+
github.com/muesli/termenv v0.15.2 // indirect
|
|
152
|
+
github.com/nsf/termbox-go v0.0.0-20190121233118-02980233997d // indirect
|
|
153
|
+
github.com/op/go-logging v0.0.0-20160211212156-b2cb9fa56473 // indirect
|
|
154
|
+
github.com/opencontainers/runtime-spec v1.2.0 // indirect
|
|
155
|
+
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
|
|
156
|
+
github.com/petermattis/goid v0.0.0-20230518223814-80aa455d8761 // indirect
|
|
157
|
+
github.com/pierrec/lz4/v4 v4.1.18 // indirect
|
|
158
|
+
github.com/pjbgf/sha1cd v0.3.0 // indirect
|
|
159
|
+
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
|
|
160
|
+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
161
|
+
github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b // indirect
|
|
162
|
+
github.com/rivo/uniseg v0.4.7 // indirect
|
|
163
|
+
github.com/rogpeppe/go-internal v1.12.0 // indirect
|
|
164
|
+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
165
|
+
github.com/sasha-s/go-deadlock v0.3.1 // indirect
|
|
166
|
+
github.com/secure-systems-lab/go-securesystemslib v0.8.0 // indirect
|
|
167
|
+
github.com/segmentio/backo-go v1.0.0 // indirect
|
|
168
|
+
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
|
|
169
|
+
github.com/shibumi/go-pathspec v1.3.0 // indirect
|
|
170
|
+
github.com/shirou/gopsutil/v3 v3.23.6 // indirect
|
|
171
|
+
github.com/skeema/knownhosts v1.3.0 // indirect
|
|
172
|
+
github.com/spf13/afero v1.9.5 // indirect
|
|
173
|
+
github.com/spf13/cast v1.5.1 // indirect
|
|
174
|
+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
175
|
+
github.com/spf13/pflag v1.0.5 // indirect
|
|
176
|
+
github.com/subosito/gotenv v1.4.2 // indirect
|
|
177
|
+
github.com/syncthing/notify v0.0.0-20210616190510-c6b7342338d2 // indirect
|
|
178
|
+
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
|
|
179
|
+
github.com/thejerf/suture/v4 v4.0.2 // indirect
|
|
180
|
+
github.com/tonistiigi/fsutil v0.0.0-20241121093142-31cf1f437184 // indirect
|
|
181
|
+
github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 // indirect
|
|
182
|
+
github.com/ulikunitz/xz v0.5.12 // indirect
|
|
183
|
+
github.com/xanzy/ssh-agent v0.3.3 // indirect
|
|
184
|
+
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
|
|
185
|
+
github.com/yusufpapurcu/wmi v1.2.3 // indirect
|
|
186
|
+
go.opencensus.io v0.24.0 // indirect
|
|
187
|
+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect
|
|
188
|
+
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.46.1 // indirect
|
|
189
|
+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
|
|
190
|
+
go.opentelemetry.io/otel v1.28.0 // indirect
|
|
191
|
+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect
|
|
192
|
+
go.opentelemetry.io/otel/metric v1.28.0 // indirect
|
|
193
|
+
go.opentelemetry.io/otel/sdk v1.28.0 // indirect
|
|
194
|
+
go.opentelemetry.io/otel/trace v1.28.0 // indirect
|
|
195
|
+
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
|
|
196
|
+
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
|
|
197
|
+
golang.org/x/net v0.34.0 // indirect
|
|
198
|
+
golang.org/x/oauth2 v0.23.0 // indirect
|
|
199
|
+
golang.org/x/sys v0.29.0 // indirect
|
|
200
|
+
golang.org/x/text v0.21.0 // indirect
|
|
201
|
+
golang.org/x/tools v0.29.0 // indirect
|
|
202
|
+
google.golang.org/api v0.155.0 // indirect
|
|
203
|
+
google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 // indirect
|
|
204
|
+
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 // indirect
|
|
205
|
+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
|
|
206
|
+
google.golang.org/grpc v1.67.0 // indirect
|
|
207
|
+
google.golang.org/protobuf v1.35.1 // indirect
|
|
208
|
+
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
209
|
+
gopkg.in/warnings.v0 v0.1.2 // indirect
|
|
210
|
+
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
211
|
+
)
|