envd 0.3.37__tar.gz → 0.3.39__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.

Files changed (298) hide show
  1. envd-0.3.39/.GIT_TAG_INFO +1 -0
  2. {envd-0.3.37 → envd-0.3.39}/.all-contributorsrc +11 -1
  3. {envd-0.3.37 → envd-0.3.39}/CHANGELOG.md +21 -0
  4. {envd-0.3.37 → envd-0.3.39}/Makefile +1 -0
  5. {envd-0.3.37 → envd-0.3.39}/PKG-INFO +4 -3
  6. {envd-0.3.37 → envd-0.3.39}/README.md +3 -2
  7. {envd-0.3.37 → envd-0.3.39}/envd/api/v1/io.py +12 -3
  8. {envd-0.3.37 → envd-0.3.39}/envd.egg-info/PKG-INFO +4 -3
  9. {envd-0.3.37 → envd-0.3.39}/go.mod +15 -15
  10. {envd-0.3.37 → envd-0.3.39}/go.sum +35 -36
  11. {envd-0.3.37 → envd-0.3.39}/pkg/app/up.go +13 -8
  12. {envd-0.3.37 → envd-0.3.39}/pkg/builder/build.go +3 -4
  13. {envd-0.3.37 → envd-0.3.39}/pkg/builder/util.go +2 -2
  14. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/io/io.go +5 -8
  15. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/graph.go +2 -1
  16. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/types.go +1 -0
  17. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/compile.go +8 -2
  18. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/system.go +2 -0
  19. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/types.go +5 -0
  20. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/compile.go +8 -2
  21. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/interface.go +2 -1
  22. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/python.go +19 -8
  23. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/system.go +25 -1
  24. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/types.go +5 -0
  25. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/util.go +48 -0
  26. envd-0.3.37/.GIT_TAG_INFO +0 -1
  27. {envd-0.3.37 → envd-0.3.39}/.editorconfig +0 -0
  28. {envd-0.3.37 → envd-0.3.39}/.gitignore +0 -0
  29. {envd-0.3.37 → envd-0.3.39}/.golangci.yml +0 -0
  30. {envd-0.3.37 → envd-0.3.39}/.goreleaser.yaml +0 -0
  31. {envd-0.3.37 → envd-0.3.39}/.markdown-lint.json +0 -0
  32. {envd-0.3.37 → envd-0.3.39}/.pre-commit-config.yaml +0 -0
  33. {envd-0.3.37 → envd-0.3.39}/.vscode/launch.json +0 -0
  34. {envd-0.3.37 → envd-0.3.39}/CODEOWNERS +0 -0
  35. {envd-0.3.37 → envd-0.3.39}/CODE_OF_CONDUCT.md +0 -0
  36. {envd-0.3.37 → envd-0.3.39}/LICENSE +0 -0
  37. {envd-0.3.37 → envd-0.3.39}/MANIFEST.in +0 -0
  38. {envd-0.3.37 → envd-0.3.39}/OWNERS +0 -0
  39. {envd-0.3.37 → envd-0.3.39}/base-images/.dockerignore +0 -0
  40. {envd-0.3.37 → envd-0.3.39}/base-images/build.sh +0 -0
  41. {envd-0.3.37 → envd-0.3.39}/base-images/envd/build.sh +0 -0
  42. {envd-0.3.37 → envd-0.3.39}/base-images/envd/envd-daemonless.Dockerfile +0 -0
  43. {envd-0.3.37 → envd-0.3.39}/base-images/envd/envd.Dockerfile +0 -0
  44. {envd-0.3.37 → envd-0.3.39}/base-images/envd-sshd/envd-sshd.Dockerfile +0 -0
  45. {envd-0.3.37 → envd-0.3.39}/base-images/envd-starship/envd-starship.Dockerfile +0 -0
  46. {envd-0.3.37 → envd-0.3.39}/base-images/julia1.8rc1-ubuntu20.04.Dockerfile +0 -0
  47. {envd-0.3.37 → envd-0.3.39}/base-images/r4.2.Dockerfile +0 -0
  48. {envd-0.3.37 → envd-0.3.39}/base-images/remote-cache/build-and-push-remote-cache.sh +0 -0
  49. {envd-0.3.37 → envd-0.3.39}/base-images/remote-cache/build.envd +0 -0
  50. {envd-0.3.37 → envd-0.3.39}/cmd/envd/main.go +0 -0
  51. {envd-0.3.37 → envd-0.3.39}/cmd/envd-sshd/main.go +0 -0
  52. {envd-0.3.37 → envd-0.3.39}/envd/api/v0/__init__.py +0 -0
  53. {envd-0.3.37 → envd-0.3.39}/envd/api/v0/config.py +0 -0
  54. {envd-0.3.37 → envd-0.3.39}/envd/api/v0/install.py +0 -0
  55. {envd-0.3.37 → envd-0.3.39}/envd/api/v0/io.py +0 -0
  56. {envd-0.3.37 → envd-0.3.39}/envd/api/v0/runtime.py +0 -0
  57. {envd-0.3.37 → envd-0.3.39}/envd/api/v1/__init__.py +0 -0
  58. {envd-0.3.37 → envd-0.3.39}/envd/api/v1/config.py +0 -0
  59. {envd-0.3.37 → envd-0.3.39}/envd/api/v1/install.py +0 -0
  60. {envd-0.3.37 → envd-0.3.39}/envd/api/v1/runtime.py +0 -0
  61. {envd-0.3.37 → envd-0.3.39}/envd/api.go +0 -0
  62. {envd-0.3.37 → envd-0.3.39}/envd.egg-info/SOURCES.txt +0 -0
  63. {envd-0.3.37 → envd-0.3.39}/envd.egg-info/dependency_links.txt +0 -0
  64. {envd-0.3.37 → envd-0.3.39}/envd.egg-info/not-zip-safe +0 -0
  65. {envd-0.3.37 → envd-0.3.39}/envd.egg-info/top_level.txt +0 -0
  66. {envd-0.3.37 → envd-0.3.39}/pkg/app/app.go +0 -0
  67. {envd-0.3.37 → envd-0.3.39}/pkg/app/bootstrap.go +0 -0
  68. {envd-0.3.37 → envd-0.3.39}/pkg/app/build/build.go +0 -0
  69. {envd-0.3.37 → envd-0.3.39}/pkg/app/build.go +0 -0
  70. {envd-0.3.37 → envd-0.3.39}/pkg/app/completion.go +0 -0
  71. {envd-0.3.37 → envd-0.3.39}/pkg/app/const.go +0 -0
  72. {envd-0.3.37 → envd-0.3.39}/pkg/app/context.go +0 -0
  73. {envd-0.3.37 → envd-0.3.39}/pkg/app/context_create.go +0 -0
  74. {envd-0.3.37 → envd-0.3.39}/pkg/app/context_ls.go +0 -0
  75. {envd-0.3.37 → envd-0.3.39}/pkg/app/context_rm.go +0 -0
  76. {envd-0.3.37 → envd-0.3.39}/pkg/app/context_use.go +0 -0
  77. {envd-0.3.37 → envd-0.3.39}/pkg/app/debug.go +0 -0
  78. {envd-0.3.37 → envd-0.3.39}/pkg/app/debug_llb.go +0 -0
  79. {envd-0.3.37 → envd-0.3.39}/pkg/app/destroy.go +0 -0
  80. {envd-0.3.37 → envd-0.3.39}/pkg/app/env.go +0 -0
  81. {envd-0.3.37 → envd-0.3.39}/pkg/app/env_describe.go +0 -0
  82. {envd-0.3.37 → envd-0.3.39}/pkg/app/env_ls.go +0 -0
  83. {envd-0.3.37 → envd-0.3.39}/pkg/app/exec.go +0 -0
  84. {envd-0.3.37 → envd-0.3.39}/pkg/app/formatter/data.go +0 -0
  85. {envd-0.3.37 → envd-0.3.39}/pkg/app/formatter/json/context.go +0 -0
  86. {envd-0.3.37 → envd-0.3.39}/pkg/app/formatter/json/env.go +0 -0
  87. {envd-0.3.37 → envd-0.3.39}/pkg/app/formatter/json/image.go +0 -0
  88. {envd-0.3.37 → envd-0.3.39}/pkg/app/formatter/json/print.go +0 -0
  89. {envd-0.3.37 → envd-0.3.39}/pkg/app/formatter/json/version.go +0 -0
  90. {envd-0.3.37 → envd-0.3.39}/pkg/app/formatter/table/context.go +0 -0
  91. {envd-0.3.37 → envd-0.3.39}/pkg/app/formatter/table/env.go +0 -0
  92. {envd-0.3.37 → envd-0.3.39}/pkg/app/formatter/table/image.go +0 -0
  93. {envd-0.3.37 → envd-0.3.39}/pkg/app/formatter/table/version.go +0 -0
  94. {envd-0.3.37 → envd-0.3.39}/pkg/app/image.go +0 -0
  95. {envd-0.3.37 → envd-0.3.39}/pkg/app/image_describe.go +0 -0
  96. {envd-0.3.37 → envd-0.3.39}/pkg/app/image_prune.go +0 -0
  97. {envd-0.3.37 → envd-0.3.39}/pkg/app/image_prune_test.go +0 -0
  98. {envd-0.3.37 → envd-0.3.39}/pkg/app/image_remove.go +0 -0
  99. {envd-0.3.37 → envd-0.3.39}/pkg/app/init.go +0 -0
  100. {envd-0.3.37 → envd-0.3.39}/pkg/app/interactive.go +0 -0
  101. {envd-0.3.37 → envd-0.3.39}/pkg/app/login.go +0 -0
  102. {envd-0.3.37 → envd-0.3.39}/pkg/app/pause.go +0 -0
  103. {envd-0.3.37 → envd-0.3.39}/pkg/app/prune.go +0 -0
  104. {envd-0.3.37 → envd-0.3.39}/pkg/app/resume.go +0 -0
  105. {envd-0.3.37 → envd-0.3.39}/pkg/app/run.go +0 -0
  106. {envd-0.3.37 → envd-0.3.39}/pkg/app/telemetry/reporter.go +0 -0
  107. {envd-0.3.37 → envd-0.3.39}/pkg/app/template/julia.envd +0 -0
  108. {envd-0.3.37 → envd-0.3.39}/pkg/app/template/r.envd +0 -0
  109. {envd-0.3.37 → envd-0.3.39}/pkg/app/top.go +0 -0
  110. {envd-0.3.37 → envd-0.3.39}/pkg/app/version.go +0 -0
  111. {envd-0.3.37 → envd-0.3.39}/pkg/autocomplete/bash.go +0 -0
  112. {envd-0.3.37 → envd-0.3.39}/pkg/autocomplete/fish.go +0 -0
  113. {envd-0.3.37 → envd-0.3.39}/pkg/autocomplete/zsh.go +0 -0
  114. {envd-0.3.37 → envd-0.3.39}/pkg/builder/build_func.go +0 -0
  115. {envd-0.3.37 → envd-0.3.39}/pkg/builder/builder.go +0 -0
  116. {envd-0.3.37 → envd-0.3.39}/pkg/builder/builder_suite_test.go +0 -0
  117. {envd-0.3.37 → envd-0.3.39}/pkg/builder/builder_test.go +0 -0
  118. {envd-0.3.37 → envd-0.3.39}/pkg/builder/dep_check.go +0 -0
  119. {envd-0.3.37 → envd-0.3.39}/pkg/builder/err.go +0 -0
  120. {envd-0.3.37 → envd-0.3.39}/pkg/builder/types.go +0 -0
  121. {envd-0.3.37 → envd-0.3.39}/pkg/builder/util_test.go +0 -0
  122. {envd-0.3.37 → envd-0.3.39}/pkg/buildkitd/buildkitd.go +0 -0
  123. {envd-0.3.37 → envd-0.3.39}/pkg/buildkitd/mock/mock.go +0 -0
  124. {envd-0.3.37 → envd-0.3.39}/pkg/buildkitd/print.go +0 -0
  125. {envd-0.3.37 → envd-0.3.39}/pkg/config/config.go +0 -0
  126. {envd-0.3.37 → envd-0.3.39}/pkg/data/datasource.go +0 -0
  127. {envd-0.3.37 → envd-0.3.39}/pkg/data/envd.go +0 -0
  128. {envd-0.3.37 → envd-0.3.39}/pkg/driver/client.go +0 -0
  129. {envd-0.3.37 → envd-0.3.39}/pkg/driver/docker/docker.go +0 -0
  130. {envd-0.3.37 → envd-0.3.39}/pkg/driver/docker/docker_suite_test.go +0 -0
  131. {envd-0.3.37 → envd-0.3.39}/pkg/driver/docker/docker_test.go +0 -0
  132. {envd-0.3.37 → envd-0.3.39}/pkg/driver/docker/label.go +0 -0
  133. {envd-0.3.37 → envd-0.3.39}/pkg/driver/nerdctl/buildkit.go +0 -0
  134. {envd-0.3.37 → envd-0.3.39}/pkg/driver/nerdctl/nerdctl.go +0 -0
  135. {envd-0.3.37 → envd-0.3.39}/pkg/driver/stats_type.go +0 -0
  136. {envd-0.3.37 → envd-0.3.39}/pkg/editor/vscode/types.go +0 -0
  137. {envd-0.3.37 → envd-0.3.39}/pkg/editor/vscode/util.go +0 -0
  138. {envd-0.3.37 → envd-0.3.39}/pkg/editor/vscode/vscode.go +0 -0
  139. {envd-0.3.37 → envd-0.3.39}/pkg/editor/vscode/vscode_suite_test.go +0 -0
  140. {envd-0.3.37 → envd-0.3.39}/pkg/editor/vscode/vscode_test.go +0 -0
  141. {envd-0.3.37 → envd-0.3.39}/pkg/envd/docker.go +0 -0
  142. {envd-0.3.37 → envd-0.3.39}/pkg/envd/engine.go +0 -0
  143. {envd-0.3.37 → envd-0.3.39}/pkg/envd/envdserver.go +0 -0
  144. {envd-0.3.37 → envd-0.3.39}/pkg/envd/factory.go +0 -0
  145. {envd-0.3.37 → envd-0.3.39}/pkg/envd/types.go +0 -0
  146. {envd-0.3.37 → envd-0.3.39}/pkg/flag/consts.go +0 -0
  147. {envd-0.3.37 → envd-0.3.39}/pkg/home/auth.go +0 -0
  148. {envd-0.3.37 → envd-0.3.39}/pkg/home/auth_test.go +0 -0
  149. {envd-0.3.37 → envd-0.3.39}/pkg/home/cache.go +0 -0
  150. {envd-0.3.37 → envd-0.3.39}/pkg/home/config.go +0 -0
  151. {envd-0.3.37 → envd-0.3.39}/pkg/home/context.go +0 -0
  152. {envd-0.3.37 → envd-0.3.39}/pkg/home/context_test.go +0 -0
  153. {envd-0.3.37 → envd-0.3.39}/pkg/home/data.go +0 -0
  154. {envd-0.3.37 → envd-0.3.39}/pkg/home/home_suite_test.go +0 -0
  155. {envd-0.3.37 → envd-0.3.39}/pkg/home/manager.go +0 -0
  156. {envd-0.3.37 → envd-0.3.39}/pkg/home/manager_test.go +0 -0
  157. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/interpreter.go +0 -0
  158. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/mock/mock.go +0 -0
  159. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/builtin/builtin.go +0 -0
  160. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/config/config.go +0 -0
  161. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/config/const.go +0 -0
  162. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/data/const.go +0 -0
  163. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/data/rule.go +0 -0
  164. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/data/util.go +0 -0
  165. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/install/const.go +0 -0
  166. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/install/install.go +0 -0
  167. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/interpreter.go +0 -0
  168. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/interpreter_test.go +0 -0
  169. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/io/const.go +0 -0
  170. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/io/io.go +0 -0
  171. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/runtime/const.go +0 -0
  172. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/runtime/runtime.go +0 -0
  173. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/starlark_suite_test.go +0 -0
  174. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/testdata/test.envd +0 -0
  175. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/universe/const.go +0 -0
  176. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v0/universe/universe.go +0 -0
  177. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/builtin/builtin.go +0 -0
  178. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/config/config.go +0 -0
  179. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/config/const.go +0 -0
  180. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/data/const.go +0 -0
  181. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/data/rule.go +0 -0
  182. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/data/util.go +0 -0
  183. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/install/const.go +0 -0
  184. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/install/install.go +0 -0
  185. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/interpreter.go +0 -0
  186. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/interpreter_test.go +0 -0
  187. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/io/const.go +0 -0
  188. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/runtime/const.go +0 -0
  189. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/runtime/runtime.go +0 -0
  190. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/starlark_suite_test.go +0 -0
  191. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/testdata/test.envd +0 -0
  192. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/universe/const.go +0 -0
  193. {envd-0.3.37 → envd-0.3.39}/pkg/lang/frontend/starlark/v1/universe/universe.go +0 -0
  194. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/util.go +0 -0
  195. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/cache.go +0 -0
  196. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/checker.go +0 -0
  197. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/conda.go +0 -0
  198. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/consts.go +0 -0
  199. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/custom.go +0 -0
  200. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/editor.go +0 -0
  201. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/editor_test.go +0 -0
  202. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/fs.go +0 -0
  203. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/git.go +0 -0
  204. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/install-conda.sh +0 -0
  205. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/install-mamba.sh +0 -0
  206. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/interface.go +0 -0
  207. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/julia.go +0 -0
  208. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/python.go +0 -0
  209. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/r.go +0 -0
  210. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/shell.go +0 -0
  211. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/supervisor.go +0 -0
  212. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/user.go +0 -0
  213. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/util.go +0 -0
  214. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v0/util_test.go +0 -0
  215. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/cache.go +0 -0
  216. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/checker.go +0 -0
  217. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/conda.go +0 -0
  218. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/consts.go +0 -0
  219. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/editor.go +0 -0
  220. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/editor_test.go +0 -0
  221. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/fs.go +0 -0
  222. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/get_conda.sh +0 -0
  223. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/git.go +0 -0
  224. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/install_conda.sh +0 -0
  225. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/julia.go +0 -0
  226. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/julia.sh +0 -0
  227. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/r.go +0 -0
  228. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/shell.go +0 -0
  229. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/supervisor.go +0 -0
  230. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/user.go +0 -0
  231. {envd-0.3.37 → envd-0.3.39}/pkg/lang/ir/v1/util_test.go +0 -0
  232. {envd-0.3.37 → envd-0.3.39}/pkg/lang/version/version.go +0 -0
  233. {envd-0.3.37 → envd-0.3.39}/pkg/metrics/collector.go +0 -0
  234. {envd-0.3.37 → envd-0.3.39}/pkg/metrics/docker_collector.go +0 -0
  235. {envd-0.3.37 → envd-0.3.39}/pkg/metrics/helper.go +0 -0
  236. {envd-0.3.37 → envd-0.3.39}/pkg/metrics/model.go +0 -0
  237. {envd-0.3.37 → envd-0.3.39}/pkg/metrics/widget.go +0 -0
  238. {envd-0.3.37 → envd-0.3.39}/pkg/progress/compileui/display.go +0 -0
  239. {envd-0.3.37 → envd-0.3.39}/pkg/progress/compileui/mock/mock.go +0 -0
  240. {envd-0.3.37 → envd-0.3.39}/pkg/progress/compileui/term.go +0 -0
  241. {envd-0.3.37 → envd-0.3.39}/pkg/progress/compileui/term_windows.go +0 -0
  242. {envd-0.3.37 → envd-0.3.39}/pkg/progress/compileui/trace.go +0 -0
  243. {envd-0.3.37 → envd-0.3.39}/pkg/progress/compileui/types.go +0 -0
  244. {envd-0.3.37 → envd-0.3.39}/pkg/progress/mode/mode.go +0 -0
  245. {envd-0.3.37 → envd-0.3.39}/pkg/progress/progressui/display.go +0 -0
  246. {envd-0.3.37 → envd-0.3.39}/pkg/progress/progressui/display_test.go +0 -0
  247. {envd-0.3.37 → envd-0.3.39}/pkg/progress/progressui/printer.go +0 -0
  248. {envd-0.3.37 → envd-0.3.39}/pkg/progress/progressui/term.go +0 -0
  249. {envd-0.3.37 → envd-0.3.39}/pkg/progress/progressui/term_windows.go +0 -0
  250. {envd-0.3.37 → envd-0.3.39}/pkg/progress/progresswriter/printer.go +0 -0
  251. {envd-0.3.37 → envd-0.3.39}/pkg/progress/progresswriter/writer.go +0 -0
  252. {envd-0.3.37 → envd-0.3.39}/pkg/remote/sshd/os.go +0 -0
  253. {envd-0.3.37 → envd-0.3.39}/pkg/remote/sshd/sshd.go +0 -0
  254. {envd-0.3.37 → envd-0.3.39}/pkg/shell/install.sh +0 -0
  255. {envd-0.3.37 → envd-0.3.39}/pkg/shell/zsh.go +0 -0
  256. {envd-0.3.37 → envd-0.3.39}/pkg/shell/zsh_suite_test.go +0 -0
  257. {envd-0.3.37 → envd-0.3.39}/pkg/shell/zsh_test.go +0 -0
  258. {envd-0.3.37 → envd-0.3.39}/pkg/shell/zshrc +0 -0
  259. {envd-0.3.37 → envd-0.3.39}/pkg/ssh/config/entry.go +0 -0
  260. {envd-0.3.37 → envd-0.3.39}/pkg/ssh/config/key.go +0 -0
  261. {envd-0.3.37 → envd-0.3.39}/pkg/ssh/config/ssh_config.go +0 -0
  262. {envd-0.3.37 → envd-0.3.39}/pkg/ssh/config/ssh_config_suite_test.go +0 -0
  263. {envd-0.3.37 → envd-0.3.39}/pkg/ssh/config/ssh_config_test.go +0 -0
  264. {envd-0.3.37 → envd-0.3.39}/pkg/ssh/copy.go +0 -0
  265. {envd-0.3.37 → envd-0.3.39}/pkg/ssh/ssh.go +0 -0
  266. {envd-0.3.37 → envd-0.3.39}/pkg/syncthing/client.go +0 -0
  267. {envd-0.3.37 → envd-0.3.39}/pkg/syncthing/config.go +0 -0
  268. {envd-0.3.37 → envd-0.3.39}/pkg/syncthing/device.go +0 -0
  269. {envd-0.3.37 → envd-0.3.39}/pkg/syncthing/event.go +0 -0
  270. {envd-0.3.37 → envd-0.3.39}/pkg/syncthing/file.go +0 -0
  271. {envd-0.3.37 → envd-0.3.39}/pkg/syncthing/folder.go +0 -0
  272. {envd-0.3.37 → envd-0.3.39}/pkg/syncthing/install.go +0 -0
  273. {envd-0.3.37 → envd-0.3.39}/pkg/syncthing/syncthing.go +0 -0
  274. {envd-0.3.37 → envd-0.3.39}/pkg/syncthing/syncthing_test.go +0 -0
  275. {envd-0.3.37 → envd-0.3.39}/pkg/syncthing/util.go +0 -0
  276. {envd-0.3.37 → envd-0.3.39}/pkg/types/envd.go +0 -0
  277. {envd-0.3.37 → envd-0.3.39}/pkg/types/label.go +0 -0
  278. {envd-0.3.37 → envd-0.3.39}/pkg/types/types_suite_test.go +0 -0
  279. {envd-0.3.37 → envd-0.3.39}/pkg/util/buildkitutil/buildkit.go +0 -0
  280. {envd-0.3.37 → envd-0.3.39}/pkg/util/buildkitutil/buildkit_test.go +0 -0
  281. {envd-0.3.37 → envd-0.3.39}/pkg/util/envutil/env.go +0 -0
  282. {envd-0.3.37 → envd-0.3.39}/pkg/util/envutil/env_test.go +0 -0
  283. {envd-0.3.37 → envd-0.3.39}/pkg/util/fileutil/file.go +0 -0
  284. {envd-0.3.37 → envd-0.3.39}/pkg/util/fileutil/file_test.go +0 -0
  285. {envd-0.3.37 → envd-0.3.39}/pkg/util/fileutil/namegenerator.go +0 -0
  286. {envd-0.3.37 → envd-0.3.39}/pkg/util/netutil/netutil.go +0 -0
  287. {envd-0.3.37 → envd-0.3.39}/pkg/util/netutil/netutil_test.go +0 -0
  288. {envd-0.3.37 → envd-0.3.39}/pkg/util/osutil/wsl.go +0 -0
  289. {envd-0.3.37 → envd-0.3.39}/pkg/util/runtimeutil/runtimeutil.go +0 -0
  290. {envd-0.3.37 → envd-0.3.39}/pkg/util/starlarkutil/stringslice.go +0 -0
  291. {envd-0.3.37 → envd-0.3.39}/pkg/util/starlarkutil/stringslice_test.go +0 -0
  292. {envd-0.3.37 → envd-0.3.39}/pkg/util/ziputil/unzip.go +0 -0
  293. {envd-0.3.37 → envd-0.3.39}/pkg/version/version.go +0 -0
  294. {envd-0.3.37 → envd-0.3.39}/pyproject.toml +0 -0
  295. {envd-0.3.37 → envd-0.3.39}/scripts/envd-daemonless.sh +0 -0
  296. {envd-0.3.37 → envd-0.3.39}/setup.cfg +0 -0
  297. {envd-0.3.37 → envd-0.3.39}/setup.py +0 -0
  298. {envd-0.3.37 → envd-0.3.39}/typos.toml +0 -0
@@ -0,0 +1 @@
1
+ v0.3.39
@@ -610,8 +610,18 @@
610
610
  "contributions": [
611
611
  "code"
612
612
  ]
613
+ },
614
+ {
615
+ "login": "lxb1226",
616
+ "name": "heyjude",
617
+ "avatar_url": "https://avatars.githubusercontent.com/u/33415192?v=4",
618
+ "profile": "https://lxb1226.github.io/",
619
+ "contributions": [
620
+ "code"
621
+ ]
613
622
  }
614
623
  ],
615
624
  "contributorsPerLine": 7,
616
- "skipCi": true
625
+ "skipCi": true,
626
+ "commitType": "docs"
617
627
  }
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.3.38 (2023-08-14)
4
+
5
+ * [be78326](https://github.com/tensorchord/envd/commit/be783264fdd79ad7262cea0485b7d449ca514f80) feat(v1): copy the requirements content if possible (#1738)
6
+ * [66d6d78](https://github.com/tensorchord/envd/commit/66d6d785c8cd810423981a83b8838e98d2c54978) feat(v1): support copy from an image (#1737)
7
+ * [7dfd379](https://github.com/tensorchord/envd/commit/7dfd3790b36afde7038b456808bbfd7b187365e2) feat: envd up with `--gpus` (#1730)
8
+
9
+ ### Contributors
10
+
11
+ * Keming
12
+
13
+ ## v0.3.37 (2023-08-04)
14
+
15
+ * [f51990e](https://github.com/tensorchord/envd/commit/f51990e82aaae662d923f9f6a1e6d8bd53c6f7bd) feat: add envd app exit handler (#1722)
16
+ * [ddc3009](https://github.com/tensorchord/envd/commit/ddc3009c2bd7739bd1bfd6ac4b1c02892daacbe4) fix: prune bin from py source dist (#1721)
17
+ * [af583f4](https://github.com/tensorchord/envd/commit/af583f4db4b842e3c61001981d4aa066ff8d4e63) fix: suppress telemetry send err msg (#1718)
18
+ * [b6b70c8](https://github.com/tensorchord/envd/commit/b6b70c8c2fbe6f7b116f0539768abfe165b7b200) fix(v1): chown the whole envd conda env to user envd (#1712)
19
+
20
+ ### Contributors
21
+
22
+ * Keming
23
+
3
24
  ## v0.3.36 (2023-07-18)
4
25
 
5
26
  * [854798c](https://github.com/tensorchord/envd/commit/854798c5b368505ea81eb040a5584f39eaee1d68) feat(v1): support moby pushing image (#1708)
@@ -164,6 +164,7 @@ debug-local:
164
164
  @for target in $(TARGETS); do \
165
165
  CGO_ENABLED=$(CGO_ENABLED) go build \
166
166
  -v -o $(DEBUG_DIR)/$${target} \
167
+ -ldflags="-X $(ROOT)/pkg/version.gitTag=$(GIT_LATEST_TAG)" \
167
168
  -gcflags='all=-N -l' \
168
169
  $(CMD_DIR)/$${target}; \
169
170
  done
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: envd
3
- Version: 0.3.37
3
+ Version: 0.3.39
4
4
  Summary: A development environment management tool for data scientists.
5
5
  Home-page: https://github.com/tensorchord/envd
6
6
  Author: TensorChord
@@ -359,19 +359,20 @@ Description: <div align="center">
359
359
  <td align="center" valign="top" width="14.28%"><a href="https://t.me/littlepoint"><img src="https://avatars.githubusercontent.com/u/7611700?v=4?s=70" width="70px;" alt="Zhizhen He"/><br /><sub><b>Zhizhen He</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=hezhizhen" title="Code">💻</a> <a href="https://github.com/tensorchord/envd/commits?author=hezhizhen" title="Documentation">📖</a></td>
360
360
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/cutecutecat"><img src="https://avatars.githubusercontent.com/u/19801166?v=4?s=70" width="70px;" alt="cutecutecat"/><br /><sub><b>cutecutecat</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=cutecutecat" title="Code">💻</a></td>
361
361
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/dqhl76"><img src="https://avatars.githubusercontent.com/u/69136320?v=4?s=70" width="70px;" alt="dqhl76"/><br /><sub><b>dqhl76</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=dqhl76" title="Documentation">📖</a> <a href="https://github.com/tensorchord/envd/commits?author=dqhl76" title="Code">💻</a></td>
362
+ <td align="center" valign="top" width="14.28%"><a href="https://lxb1226.github.io/"><img src="https://avatars.githubusercontent.com/u/33415192?v=4?s=70" width="70px;" alt="heyjude"/><br /><sub><b>heyjude</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=lxb1226" title="Code">💻</a></td>
362
363
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/jimoosciuc"><img src="https://avatars.githubusercontent.com/u/33337387?v=4?s=70" width="70px;" alt="jimoosciuc"/><br /><sub><b>jimoosciuc</b></sub></a><br /><a href="#userTesting-jimoosciuc" title="User Testing">📓</a></td>
363
- <td align="center" valign="top" width="14.28%"><a href="https://kenwoodjw.github.io"><img src="https://avatars.githubusercontent.com/u/10386710?v=4?s=70" width="70px;" alt="kenwoodjw"/><br /><sub><b>kenwoodjw</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=kenwoodjw" title="Code">💻</a></td>
364
364
  </tr>
365
365
  <tr>
366
+ <td align="center" valign="top" width="14.28%"><a href="https://kenwoodjw.github.io"><img src="https://avatars.githubusercontent.com/u/10386710?v=4?s=70" width="70px;" alt="kenwoodjw"/><br /><sub><b>kenwoodjw</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=kenwoodjw" title="Code">💻</a></td>
366
367
  <td align="center" valign="top" width="14.28%"><a href="http://www.hwdef.org"><img src="https://avatars.githubusercontent.com/u/13084946?v=4?s=70" width="70px;" alt="li mengyang"/><br /><sub><b>li mengyang</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=hwdef" title="Code">💻</a></td>
367
368
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/aseaday"><img src="https://avatars.githubusercontent.com/u/3927355?v=4?s=70" width="70px;" alt="nullday"/><br /><sub><b>nullday</b></sub></a><br /><a href="#ideas-aseaday" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/tensorchord/envd/commits?author=aseaday" title="Code">💻</a></td>
368
369
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/rrain7"><img src="https://avatars.githubusercontent.com/u/49144127?v=4?s=70" width="70px;" alt="rrain7"/><br /><sub><b>rrain7</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=rrain7" title="Code">💻</a></td>
369
370
  <td align="center" valign="top" width="14.28%"><a href="https://tisonkun.org/"><img src="https://avatars.githubusercontent.com/u/18818196?v=4?s=70" width="70px;" alt="tison"/><br /><sub><b>tison</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=tisonkun" title="Code">💻</a></td>
370
371
  <td align="center" valign="top" width="14.28%"><a href="http://fatelei.github.io"><img src="https://avatars.githubusercontent.com/u/961094?v=4?s=70" width="70px;" alt="wangxiaolei"/><br /><sub><b>wangxiaolei</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=fatelei" title="Code">💻</a></td>
371
372
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/sea-wyq"><img src="https://avatars.githubusercontent.com/u/22475606?v=4?s=70" width="70px;" alt="wyq"/><br /><sub><b>wyq</b></sub></a><br /><a href="https://github.com/tensorchord/envd/issues?q=author%3Asea-wyq" title="Bug reports">🐛</a> <a href="#design-sea-wyq" title="Design">🎨</a> <a href="https://github.com/tensorchord/envd/commits?author=sea-wyq" title="Code">💻</a></td>
372
- <td align="center" valign="top" width="14.28%"><a href="https://oubotong.github.io/johan"><img src="https://avatars.githubusercontent.com/u/26356127?v=4?s=70" width="70px;" alt="x0oo0x"/><br /><sub><b>x0oo0x</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=oubotong" title="Code">💻</a></td>
373
373
  </tr>
374
374
  <tr>
375
+ <td align="center" valign="top" width="14.28%"><a href="https://oubotong.github.io/johan"><img src="https://avatars.githubusercontent.com/u/26356127?v=4?s=70" width="70px;" alt="x0oo0x"/><br /><sub><b>x0oo0x</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=oubotong" title="Code">💻</a></td>
375
376
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/xiangtianyu"><img src="https://avatars.githubusercontent.com/u/10825900?v=4?s=70" width="70px;" alt="xiangtianyu"/><br /><sub><b>xiangtianyu</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xiangtianyu" title="Documentation">📖</a></td>
376
377
  <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>
377
378
  <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>
@@ -351,19 +351,20 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
351
351
  <td align="center" valign="top" width="14.28%"><a href="https://t.me/littlepoint"><img src="https://avatars.githubusercontent.com/u/7611700?v=4?s=70" width="70px;" alt="Zhizhen He"/><br /><sub><b>Zhizhen He</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=hezhizhen" title="Code">💻</a> <a href="https://github.com/tensorchord/envd/commits?author=hezhizhen" title="Documentation">📖</a></td>
352
352
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/cutecutecat"><img src="https://avatars.githubusercontent.com/u/19801166?v=4?s=70" width="70px;" alt="cutecutecat"/><br /><sub><b>cutecutecat</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=cutecutecat" title="Code">💻</a></td>
353
353
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/dqhl76"><img src="https://avatars.githubusercontent.com/u/69136320?v=4?s=70" width="70px;" alt="dqhl76"/><br /><sub><b>dqhl76</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=dqhl76" title="Documentation">📖</a> <a href="https://github.com/tensorchord/envd/commits?author=dqhl76" title="Code">💻</a></td>
354
+ <td align="center" valign="top" width="14.28%"><a href="https://lxb1226.github.io/"><img src="https://avatars.githubusercontent.com/u/33415192?v=4?s=70" width="70px;" alt="heyjude"/><br /><sub><b>heyjude</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=lxb1226" title="Code">💻</a></td>
354
355
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/jimoosciuc"><img src="https://avatars.githubusercontent.com/u/33337387?v=4?s=70" width="70px;" alt="jimoosciuc"/><br /><sub><b>jimoosciuc</b></sub></a><br /><a href="#userTesting-jimoosciuc" title="User Testing">📓</a></td>
355
- <td align="center" valign="top" width="14.28%"><a href="https://kenwoodjw.github.io"><img src="https://avatars.githubusercontent.com/u/10386710?v=4?s=70" width="70px;" alt="kenwoodjw"/><br /><sub><b>kenwoodjw</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=kenwoodjw" title="Code">💻</a></td>
356
356
  </tr>
357
357
  <tr>
358
+ <td align="center" valign="top" width="14.28%"><a href="https://kenwoodjw.github.io"><img src="https://avatars.githubusercontent.com/u/10386710?v=4?s=70" width="70px;" alt="kenwoodjw"/><br /><sub><b>kenwoodjw</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=kenwoodjw" title="Code">💻</a></td>
358
359
  <td align="center" valign="top" width="14.28%"><a href="http://www.hwdef.org"><img src="https://avatars.githubusercontent.com/u/13084946?v=4?s=70" width="70px;" alt="li mengyang"/><br /><sub><b>li mengyang</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=hwdef" title="Code">💻</a></td>
359
360
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/aseaday"><img src="https://avatars.githubusercontent.com/u/3927355?v=4?s=70" width="70px;" alt="nullday"/><br /><sub><b>nullday</b></sub></a><br /><a href="#ideas-aseaday" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/tensorchord/envd/commits?author=aseaday" title="Code">💻</a></td>
360
361
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/rrain7"><img src="https://avatars.githubusercontent.com/u/49144127?v=4?s=70" width="70px;" alt="rrain7"/><br /><sub><b>rrain7</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=rrain7" title="Code">💻</a></td>
361
362
  <td align="center" valign="top" width="14.28%"><a href="https://tisonkun.org/"><img src="https://avatars.githubusercontent.com/u/18818196?v=4?s=70" width="70px;" alt="tison"/><br /><sub><b>tison</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=tisonkun" title="Code">💻</a></td>
362
363
  <td align="center" valign="top" width="14.28%"><a href="http://fatelei.github.io"><img src="https://avatars.githubusercontent.com/u/961094?v=4?s=70" width="70px;" alt="wangxiaolei"/><br /><sub><b>wangxiaolei</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=fatelei" title="Code">💻</a></td>
363
364
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/sea-wyq"><img src="https://avatars.githubusercontent.com/u/22475606?v=4?s=70" width="70px;" alt="wyq"/><br /><sub><b>wyq</b></sub></a><br /><a href="https://github.com/tensorchord/envd/issues?q=author%3Asea-wyq" title="Bug reports">🐛</a> <a href="#design-sea-wyq" title="Design">🎨</a> <a href="https://github.com/tensorchord/envd/commits?author=sea-wyq" title="Code">💻</a></td>
364
- <td align="center" valign="top" width="14.28%"><a href="https://oubotong.github.io/johan"><img src="https://avatars.githubusercontent.com/u/26356127?v=4?s=70" width="70px;" alt="x0oo0x"/><br /><sub><b>x0oo0x</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=oubotong" title="Code">💻</a></td>
365
365
  </tr>
366
366
  <tr>
367
+ <td align="center" valign="top" width="14.28%"><a href="https://oubotong.github.io/johan"><img src="https://avatars.githubusercontent.com/u/26356127?v=4?s=70" width="70px;" alt="x0oo0x"/><br /><sub><b>x0oo0x</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=oubotong" title="Code">💻</a></td>
367
368
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/xiangtianyu"><img src="https://avatars.githubusercontent.com/u/10825900?v=4?s=70" width="70px;" alt="xiangtianyu"/><br /><sub><b>xiangtianyu</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xiangtianyu" title="Documentation">📖</a></td>
368
369
  <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>
369
370
  <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>
@@ -30,12 +30,21 @@ v1 is experimental and may change in the future. Make sure to freeze the envd ve
30
30
  from typing import Optional
31
31
 
32
32
 
33
- def copy(host_path: str, envd_path: str):
33
+ def copy(source: str, target: str, image: Optional[str]):
34
34
  """Copy from host path to container path (build time)
35
35
 
36
36
  Args:
37
- host_path (str): source path in the host machine
38
- envd_path (str): destination path in the envd container
37
+ source (str): source path in the host machine or in the ``image``
38
+ target (str): destination path in the envd container
39
+ image(Optional[str]): image name, if not specified, will use the host
40
+
41
+ Examples:
42
+ ```
43
+ # copy from host to container
44
+ io.copy(source='main.py', target='/home/envd/')
45
+ # copy from image to container
46
+ io.copy(source='/bin/micromamba', target='/usr/local/bin/micromamba', image='mambaorg/micromamba:1.0.0')
47
+ ```
39
48
  """
40
49
 
41
50
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: envd
3
- Version: 0.3.37
3
+ Version: 0.3.39
4
4
  Summary: A development environment management tool for data scientists.
5
5
  Home-page: https://github.com/tensorchord/envd
6
6
  Author: TensorChord
@@ -359,19 +359,20 @@ Description: <div align="center">
359
359
  <td align="center" valign="top" width="14.28%"><a href="https://t.me/littlepoint"><img src="https://avatars.githubusercontent.com/u/7611700?v=4?s=70" width="70px;" alt="Zhizhen He"/><br /><sub><b>Zhizhen He</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=hezhizhen" title="Code">💻</a> <a href="https://github.com/tensorchord/envd/commits?author=hezhizhen" title="Documentation">📖</a></td>
360
360
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/cutecutecat"><img src="https://avatars.githubusercontent.com/u/19801166?v=4?s=70" width="70px;" alt="cutecutecat"/><br /><sub><b>cutecutecat</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=cutecutecat" title="Code">💻</a></td>
361
361
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/dqhl76"><img src="https://avatars.githubusercontent.com/u/69136320?v=4?s=70" width="70px;" alt="dqhl76"/><br /><sub><b>dqhl76</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=dqhl76" title="Documentation">📖</a> <a href="https://github.com/tensorchord/envd/commits?author=dqhl76" title="Code">💻</a></td>
362
+ <td align="center" valign="top" width="14.28%"><a href="https://lxb1226.github.io/"><img src="https://avatars.githubusercontent.com/u/33415192?v=4?s=70" width="70px;" alt="heyjude"/><br /><sub><b>heyjude</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=lxb1226" title="Code">💻</a></td>
362
363
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/jimoosciuc"><img src="https://avatars.githubusercontent.com/u/33337387?v=4?s=70" width="70px;" alt="jimoosciuc"/><br /><sub><b>jimoosciuc</b></sub></a><br /><a href="#userTesting-jimoosciuc" title="User Testing">📓</a></td>
363
- <td align="center" valign="top" width="14.28%"><a href="https://kenwoodjw.github.io"><img src="https://avatars.githubusercontent.com/u/10386710?v=4?s=70" width="70px;" alt="kenwoodjw"/><br /><sub><b>kenwoodjw</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=kenwoodjw" title="Code">💻</a></td>
364
364
  </tr>
365
365
  <tr>
366
+ <td align="center" valign="top" width="14.28%"><a href="https://kenwoodjw.github.io"><img src="https://avatars.githubusercontent.com/u/10386710?v=4?s=70" width="70px;" alt="kenwoodjw"/><br /><sub><b>kenwoodjw</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=kenwoodjw" title="Code">💻</a></td>
366
367
  <td align="center" valign="top" width="14.28%"><a href="http://www.hwdef.org"><img src="https://avatars.githubusercontent.com/u/13084946?v=4?s=70" width="70px;" alt="li mengyang"/><br /><sub><b>li mengyang</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=hwdef" title="Code">💻</a></td>
367
368
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/aseaday"><img src="https://avatars.githubusercontent.com/u/3927355?v=4?s=70" width="70px;" alt="nullday"/><br /><sub><b>nullday</b></sub></a><br /><a href="#ideas-aseaday" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/tensorchord/envd/commits?author=aseaday" title="Code">💻</a></td>
368
369
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/rrain7"><img src="https://avatars.githubusercontent.com/u/49144127?v=4?s=70" width="70px;" alt="rrain7"/><br /><sub><b>rrain7</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=rrain7" title="Code">💻</a></td>
369
370
  <td align="center" valign="top" width="14.28%"><a href="https://tisonkun.org/"><img src="https://avatars.githubusercontent.com/u/18818196?v=4?s=70" width="70px;" alt="tison"/><br /><sub><b>tison</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=tisonkun" title="Code">💻</a></td>
370
371
  <td align="center" valign="top" width="14.28%"><a href="http://fatelei.github.io"><img src="https://avatars.githubusercontent.com/u/961094?v=4?s=70" width="70px;" alt="wangxiaolei"/><br /><sub><b>wangxiaolei</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=fatelei" title="Code">💻</a></td>
371
372
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/sea-wyq"><img src="https://avatars.githubusercontent.com/u/22475606?v=4?s=70" width="70px;" alt="wyq"/><br /><sub><b>wyq</b></sub></a><br /><a href="https://github.com/tensorchord/envd/issues?q=author%3Asea-wyq" title="Bug reports">🐛</a> <a href="#design-sea-wyq" title="Design">🎨</a> <a href="https://github.com/tensorchord/envd/commits?author=sea-wyq" title="Code">💻</a></td>
372
- <td align="center" valign="top" width="14.28%"><a href="https://oubotong.github.io/johan"><img src="https://avatars.githubusercontent.com/u/26356127?v=4?s=70" width="70px;" alt="x0oo0x"/><br /><sub><b>x0oo0x</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=oubotong" title="Code">💻</a></td>
373
373
  </tr>
374
374
  <tr>
375
+ <td align="center" valign="top" width="14.28%"><a href="https://oubotong.github.io/johan"><img src="https://avatars.githubusercontent.com/u/26356127?v=4?s=70" width="70px;" alt="x0oo0x"/><br /><sub><b>x0oo0x</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=oubotong" title="Code">💻</a></td>
375
376
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/xiangtianyu"><img src="https://avatars.githubusercontent.com/u/10825900?v=4?s=70" width="70px;" alt="xiangtianyu"/><br /><sub><b>xiangtianyu</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xiangtianyu" title="Documentation">📖</a></td>
376
377
  <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>
377
378
  <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>
@@ -38,7 +38,7 @@ require (
38
38
  github.com/sirupsen/logrus v1.9.3
39
39
  github.com/spf13/viper v1.16.0
40
40
  github.com/stretchr/testify v1.8.4
41
- github.com/syncthing/syncthing v1.23.5
41
+ github.com/syncthing/syncthing v1.23.7
42
42
  github.com/tensorchord/envd-server v0.0.27
43
43
  github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea
44
44
  github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f
@@ -46,7 +46,7 @@ require (
46
46
  go.starlark.net v0.0.0-20220328144851-d1966c6b9fcd
47
47
  golang.org/x/crypto v0.11.0
48
48
  golang.org/x/sync v0.3.0
49
- golang.org/x/term v0.10.0
49
+ golang.org/x/term v0.11.0
50
50
  golang.org/x/time v0.3.0
51
51
  )
52
52
 
@@ -97,7 +97,7 @@ require (
97
97
  github.com/golang/protobuf v1.5.3 // indirect
98
98
  github.com/golang/snappy v0.0.4 // indirect
99
99
  github.com/google/go-cmp v0.5.9 // indirect
100
- github.com/google/pprof v0.0.0-20230406165453-00490a63f317 // indirect
100
+ github.com/google/pprof v0.0.0-20230705174524-200ffdc848b8 // indirect
101
101
  github.com/google/s2a-go v0.1.3 // indirect
102
102
  github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
103
103
  github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
@@ -111,7 +111,7 @@ require (
111
111
  github.com/hashicorp/go-multierror v1.1.1 // indirect
112
112
  github.com/hashicorp/go-safetemp v1.0.0 // indirect
113
113
  github.com/hashicorp/go-version v1.6.0 // indirect
114
- github.com/hashicorp/golang-lru/v2 v2.0.2 // indirect
114
+ github.com/hashicorp/golang-lru/v2 v2.0.4 // indirect
115
115
  github.com/hashicorp/hcl v1.0.0 // indirect
116
116
  github.com/imdario/mergo v0.3.15 // indirect
117
117
  github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
@@ -119,7 +119,7 @@ require (
119
119
  github.com/json-iterator/go v1.1.12 // indirect
120
120
  github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
121
121
  github.com/klauspost/compress v1.16.3 // indirect
122
- github.com/klauspost/cpuid/v2 v2.2.4 // indirect
122
+ github.com/klauspost/cpuid/v2 v2.2.5 // indirect
123
123
  github.com/klauspost/pgzip v1.2.6-0.20220930104621-17e8dac29df8 // indirect
124
124
  github.com/kr/fs v0.1.0 // indirect
125
125
  github.com/kr/pretty v0.3.1 // indirect
@@ -128,7 +128,7 @@ require (
128
128
  github.com/magiconair/properties v1.8.7 // indirect
129
129
  github.com/mattn/go-localereader v0.0.1 // indirect
130
130
  github.com/mattn/go-runewidth v0.0.14 // indirect
131
- github.com/minio/sha256-simd v1.0.0 // indirect
131
+ github.com/minio/sha256-simd v1.0.1 // indirect
132
132
  github.com/miscreant/miscreant.go v0.0.0-20200214223636-26d376326b75 // indirect
133
133
  github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
134
134
  github.com/mitchellh/go-homedir v1.1.0 // indirect
@@ -150,8 +150,8 @@ require (
150
150
  github.com/opencontainers/runc v1.1.5 // indirect
151
151
  github.com/opencontainers/runtime-spec v1.1.0-rc.1 // indirect
152
152
  github.com/pelletier/go-toml/v2 v2.0.8 // indirect
153
- github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08 // indirect
154
- github.com/pierrec/lz4/v4 v4.1.17 // indirect
153
+ github.com/petermattis/goid v0.0.0-20230518223814-80aa455d8761 // indirect
154
+ github.com/pierrec/lz4/v4 v4.1.18 // indirect
155
155
  github.com/pmezard/go-difflib v1.0.0 // indirect
156
156
  github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b // indirect
157
157
  github.com/rivo/uniseg v0.4.4 // indirect
@@ -160,7 +160,7 @@ require (
160
160
  github.com/sasha-s/go-deadlock v0.3.1 // indirect
161
161
  github.com/segmentio/backo-go v1.0.0 // indirect
162
162
  github.com/sergi/go-diff v1.1.0 // indirect
163
- github.com/shirou/gopsutil/v3 v3.23.3 // indirect
163
+ github.com/shirou/gopsutil/v3 v3.23.6 // indirect
164
164
  github.com/spf13/afero v1.9.5 // indirect
165
165
  github.com/spf13/cast v1.5.1 // indirect
166
166
  github.com/spf13/jwalterweatherman v1.1.0 // indirect
@@ -175,7 +175,7 @@ require (
175
175
  github.com/vbatts/tar-split v0.11.3 // indirect
176
176
  github.com/xanzy/ssh-agent v0.3.0 // indirect
177
177
  github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
178
- github.com/yusufpapurcu/wmi v1.2.2 // indirect
178
+ github.com/yusufpapurcu/wmi v1.2.3 // indirect
179
179
  go.opencensus.io v0.24.0 // indirect
180
180
  go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.40.0 // indirect
181
181
  go.opentelemetry.io/otel v1.14.0 // indirect
@@ -184,19 +184,19 @@ require (
184
184
  go.opentelemetry.io/otel/sdk v1.14.0 // indirect
185
185
  go.opentelemetry.io/otel/trace v1.14.0 // indirect
186
186
  go.opentelemetry.io/proto/otlp v0.19.0 // indirect
187
- golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
188
- golang.org/x/mod v0.10.0 // indirect
187
+ golang.org/x/exp v0.0.0-20230711023510-fffb14384f22 // indirect
188
+ golang.org/x/mod v0.12.0 // indirect
189
189
  golang.org/x/net v0.12.0 // indirect
190
190
  golang.org/x/oauth2 v0.7.0 // indirect
191
- golang.org/x/sys v0.10.0 // indirect
191
+ golang.org/x/sys v0.11.0 // indirect
192
192
  golang.org/x/text v0.11.0 // indirect
193
- golang.org/x/tools v0.9.3 // indirect
193
+ golang.org/x/tools v0.11.0 // indirect
194
194
  golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
195
195
  google.golang.org/api v0.122.0 // indirect
196
196
  google.golang.org/appengine v1.6.7 // indirect
197
197
  google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
198
198
  google.golang.org/grpc v1.55.0 // indirect
199
- google.golang.org/protobuf v1.30.0 // indirect
199
+ google.golang.org/protobuf v1.31.0 // indirect
200
200
  gopkg.in/ini.v1 v1.67.0 // indirect
201
201
  gopkg.in/warnings.v0 v0.1.2 // indirect
202
202
  gopkg.in/yaml.v3 v3.0.1 // indirect
@@ -482,8 +482,8 @@ github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38/go.mod h1:kpwsk12EmLe
482
482
  github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
483
483
  github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
484
484
  github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
485
- github.com/google/pprof v0.0.0-20230406165453-00490a63f317 h1:hFhpt7CTmR3DX+b4R19ydQFtofxT0Sv3QsKNMVQYTMQ=
486
- github.com/google/pprof v0.0.0-20230406165453-00490a63f317/go.mod h1:79YE0hCXdHag9sBkw2o+N/YnZtTkXi0UT9Nnixa5eYk=
485
+ github.com/google/pprof v0.0.0-20230705174524-200ffdc848b8 h1:n6vlPhxsA+BW/XsS5+uqi7GyzaLa5MH7qlSLBZtRdiA=
486
+ github.com/google/pprof v0.0.0-20230705174524-200ffdc848b8/go.mod h1:Jh3hGz2jkYak8qXPD19ryItVnUgpgeqzdkY/D0EaeuA=
487
487
  github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
488
488
  github.com/google/s2a-go v0.1.3 h1:FAgZmpLl/SXurPEZyCMPBIiiYeTbqfjlbdnCNTAkbGE=
489
489
  github.com/google/s2a-go v0.1.3/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A=
@@ -534,8 +534,8 @@ github.com/hashicorp/go-version v1.6.0 h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mO
534
534
  github.com/hashicorp/go-version v1.6.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=
535
535
  github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
536
536
  github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
537
- github.com/hashicorp/golang-lru/v2 v2.0.2 h1:Dwmkdr5Nc/oBiXgJS3CDHNhJtIHkuZ3DZF5twqnfBdU=
538
- github.com/hashicorp/golang-lru/v2 v2.0.2/go.mod h1:QeFd9opnmA6QUJc5vARoKUSoFhyfM2/ZepoAG6RGpeM=
537
+ github.com/hashicorp/golang-lru/v2 v2.0.4 h1:7GHuZcgid37q8o5i3QI9KMT4nCWQQ3Kx3Ov6bb9MfK0=
538
+ github.com/hashicorp/golang-lru/v2 v2.0.4/go.mod h1:QeFd9opnmA6QUJc5vARoKUSoFhyfM2/ZepoAG6RGpeM=
539
539
  github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
540
540
  github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
541
541
  github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
@@ -567,9 +567,8 @@ github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+o
567
567
  github.com/klauspost/compress v1.15.11/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM=
568
568
  github.com/klauspost/compress v1.16.3 h1:XuJt9zzcnaz6a16/OU53ZjWp/v7/42WcR5t2a0PcNQY=
569
569
  github.com/klauspost/compress v1.16.3/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE=
570
- github.com/klauspost/cpuid/v2 v2.0.4/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
571
- github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk=
572
- github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY=
570
+ github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg=
571
+ github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws=
573
572
  github.com/klauspost/pgzip v1.2.6-0.20220930104621-17e8dac29df8 h1:BcxbplxjtczA1a6d3wYoa7a0WL3rq9DKBMGHeKyjEF0=
574
573
  github.com/klauspost/pgzip v1.2.6-0.20220930104621-17e8dac29df8/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs=
575
574
  github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
@@ -608,8 +607,8 @@ github.com/mattn/go-runewidth v0.0.12/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRC
608
607
  github.com/mattn/go-runewidth v0.0.14 h1:+xnbZSEeDbOIg5/mE6JF0w6n9duR1l3/WmbinWVwUuU=
609
608
  github.com/mattn/go-runewidth v0.0.14/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
610
609
  github.com/miekg/pkcs11 v1.1.1/go.mod h1:XsNlhZGX73bx86s2hdc/FuaLm2CPZJemRLMA+WTFxgs=
611
- github.com/minio/sha256-simd v1.0.0 h1:v1ta+49hkWZyvaKwrQB8elexRqm6Y0aMLjCNsrYxo6g=
612
- github.com/minio/sha256-simd v1.0.0/go.mod h1:OuYzVNI5vcoYIAmbIvHPl3N3jUzVedXbKy5RFepssQM=
610
+ github.com/minio/sha256-simd v1.0.1 h1:6kaan5IFmwTNynnKKpDHe6FWHohJOHhCPchzK49dzMM=
611
+ github.com/minio/sha256-simd v1.0.1/go.mod h1:Pz6AKMiUdngCLpeTL/RJY1M9rUuPMYujV5xJjtbRSN8=
613
612
  github.com/miscreant/miscreant.go v0.0.0-20200214223636-26d376326b75 h1:cUVxyR+UfmdEAZGJ8IiKld1O0dbGotEnkMolG5hfMSY=
614
613
  github.com/miscreant/miscreant.go v0.0.0-20200214223636-26d376326b75/go.mod h1:pBbZyGwC5i16IBkjVKoy/sznA8jPD/K9iedwe1ESE6w=
615
614
  github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db h1:62I3jR2EmQ4l5rM/4FEfDWcRD+abF5XlKShorW5LRoQ=
@@ -707,10 +706,10 @@ github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3v
707
706
  github.com/pelletier/go-toml/v2 v2.0.8 h1:0ctb6s9mE31h0/lhu+J6OPmVeDxJn+kYnJc2jZR9tGQ=
708
707
  github.com/pelletier/go-toml/v2 v2.0.8/go.mod h1:vuYfssBdrU2XDZ9bYydBu6t+6a6PYNcZljzZR9VXg+4=
709
708
  github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5/go.mod h1:jvVRKCrJTQWu0XVbaOlby/2lO20uSCHEMzzplHXte1o=
710
- github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08 h1:hDSdbBuw3Lefr6R18ax0tZ2BJeNB3NehB3trOwYBsdU=
711
- github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08/go.mod h1:pxMtw7cyUw6B2bRH0ZBANSPg+AoSud1I1iyJHI69jH4=
712
- github.com/pierrec/lz4/v4 v4.1.17 h1:kV4Ip+/hUBC+8T6+2EgburRtkE9ef4nbY3f4dFhGjMc=
713
- github.com/pierrec/lz4/v4 v4.1.17/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4=
709
+ github.com/petermattis/goid v0.0.0-20230518223814-80aa455d8761 h1:W04oB3d0J01W5jgYRGKsV8LCM6g9EkCvPkZcmFuy0OE=
710
+ github.com/petermattis/goid v0.0.0-20230518223814-80aa455d8761/go.mod h1:pxMtw7cyUw6B2bRH0ZBANSPg+AoSud1I1iyJHI69jH4=
711
+ github.com/pierrec/lz4/v4 v4.1.18 h1:xaKrnTkyoqfh1YItXl56+6KJNVYWlEEPuAQW9xsplYQ=
712
+ github.com/pierrec/lz4/v4 v4.1.18/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4=
714
713
  github.com/pingcap/errors v0.11.4 h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4=
715
714
  github.com/pkg/browser v0.0.0-20201207095918-0426ae3fba23/go.mod h1:N6UoU20jOqggOuDwUaBQpluzLNDqif3kq9z2wpdYEfQ=
716
715
  github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
@@ -728,7 +727,7 @@ github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b/go.mod h1:Om
728
727
  github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
729
728
  github.com/prometheus/procfs v0.0.0-20180125133057-cb4147076ac7/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
730
729
  github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA=
731
- github.com/prometheus/procfs v0.9.0 h1:wzCHvIvM5SxWqYvwgVL7yJY8Lz3PKn49KQtpgMYJfhI=
730
+ github.com/prometheus/procfs v0.11.0 h1:5EAgkfkMl659uZPbe9AS2N68a7Cc1TJbPEuGzFuRbyk=
732
731
  github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
733
732
  github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
734
733
  github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis=
@@ -754,10 +753,10 @@ github.com/segmentio/backo-go v1.0.0/go.mod h1:kJ9mm9YmoWSkk+oQ+5Cj8DEoRCX2JT6As
754
753
  github.com/sergi/go-diff v1.1.0 h1:we8PVUC3FE2uYfodKH/nBHMSetSfHDR6scGdBi+erh0=
755
754
  github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM=
756
755
  github.com/shibumi/go-pathspec v1.3.0 h1:QUyMZhFo0Md5B8zV8x2tesohbb5kfbpTi9rBnKh5dkI=
757
- github.com/shirou/gopsutil/v3 v3.23.3 h1:Syt5vVZXUDXPEXpIBt5ziWsJ4LdSAAxF4l/xZeQgSEE=
758
- github.com/shirou/gopsutil/v3 v3.23.3/go.mod h1:lSBNN6t3+D6W5e5nXTxc8KIMMVxAcS+6IJlffjRRlMU=
759
- github.com/shoenig/go-m1cpu v0.1.4/go.mod h1:Wwvst4LR89UxjeFtLRMrpgRiyY4xPsejnVZym39dbAQ=
760
- github.com/shoenig/test v0.6.3/go.mod h1:byHiCGXqrVaflBLAMq/srcZIHynQPQgeyvkvXnjqq0k=
756
+ github.com/shirou/gopsutil/v3 v3.23.6 h1:5y46WPI9QBKBbK7EEccUPNXpJpNrvPuTD0O2zHEHT08=
757
+ github.com/shirou/gopsutil/v3 v3.23.6/go.mod h1:j7QX50DrXYggrpN30W0Mo+I4/8U2UUIQrnrhqUeWrAU=
758
+ github.com/shoenig/go-m1cpu v0.1.6/go.mod h1:1JJMcUBvfNwpq05QDQVAnx3gUHr9IYF7GNg9SUEw2VQ=
759
+ github.com/shoenig/test v0.6.4/go.mod h1:byHiCGXqrVaflBLAMq/srcZIHynQPQgeyvkvXnjqq0k=
761
760
  github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=
762
761
  github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q=
763
762
  github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
@@ -797,7 +796,6 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
797
796
  github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals=
798
797
  github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
799
798
  github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
800
- github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
801
799
  github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
802
800
  github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
803
801
  github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
@@ -805,8 +803,8 @@ github.com/subosito/gotenv v1.4.2 h1:X1TuBLAMDFbaTAChgCBLu3DU3UPyELpnF2jjJ2cz/S8
805
803
  github.com/subosito/gotenv v1.4.2/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0=
806
804
  github.com/syncthing/notify v0.0.0-20210616190510-c6b7342338d2 h1:F4snRP//nIuTTW9LYEzVH4HVwDG9T3M4t8y/2nqMbiY=
807
805
  github.com/syncthing/notify v0.0.0-20210616190510-c6b7342338d2/go.mod h1:J0q59IWjLtpRIJulohwqEZvjzwOfTEPp8SVhDJl+y0Y=
808
- github.com/syncthing/syncthing v1.23.5 h1:ARmzVJrnqc64ls//aOy2giNJLWQc+xCgoAaHo1Gqz6s=
809
- github.com/syncthing/syncthing v1.23.5/go.mod h1:am4ZwC/vahEQ1dLflqB0urA0FY5/ms0bwtqvxh5GIy0=
806
+ github.com/syncthing/syncthing v1.23.7 h1:PaHKBN4C+qaam9vtMV0qjwMBywAuyVtxmQ7vbBrV0Rw=
807
+ github.com/syncthing/syncthing v1.23.7/go.mod h1:9f9139UzZ/llx16dP3x1XtID87IhOorEbHHrTDjNhQs=
810
808
  github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 h1:kdXcSzyDtseVEc4yCz2qF8ZrQvIDBJLl4S1c3GCXmoI=
811
809
  github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww=
812
810
  github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d h1:vfofYNRScrDdvS342BElfbETmL1Aiz3i2t0zfRj16Hs=
@@ -845,8 +843,8 @@ github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de
845
843
  github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
846
844
  github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
847
845
  github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
848
- github.com/yusufpapurcu/wmi v1.2.2 h1:KBNDSne4vP5mbSWnJbO+51IMOXJB67QiYCSBrubbPRg=
849
- github.com/yusufpapurcu/wmi v1.2.2/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0=
846
+ github.com/yusufpapurcu/wmi v1.2.3 h1:E1ctvB7uKFMOJw3fdOW32DwGE9I7t++CRUEMKvFoFiw=
847
+ github.com/yusufpapurcu/wmi v1.2.3/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0=
850
848
  go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1/go.mod h1:SNgMg+EgDFwmvSmLRTNKC5fegJjB7v23qTQ0XLGUNHk=
851
849
  go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=
852
850
  go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=
@@ -902,8 +900,8 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0
902
900
  golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=
903
901
  golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM=
904
902
  golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU=
905
- golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAbp/4JxTSwCmvdjEYmug=
906
- golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc=
903
+ golang.org/x/exp v0.0.0-20230711023510-fffb14384f22 h1:FqrVOBQxQ8r/UwwXibI0KMolVhvFiGobSfdE33deHJM=
904
+ golang.org/x/exp v0.0.0-20230711023510-fffb14384f22/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc=
907
905
  golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=
908
906
  golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=
909
907
  golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
@@ -930,8 +928,8 @@ golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
930
928
  golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
931
929
  golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
932
930
  golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
933
- golang.org/x/mod v0.10.0 h1:lFO9qtOdlre5W1jxS3r/4szv2/6iXxScdzjoBMXNhYk=
934
- golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
931
+ golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc=
932
+ golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
935
933
  golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
936
934
  golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
937
935
  golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
@@ -1119,7 +1117,6 @@ golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBc
1119
1117
  golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1120
1118
  golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1121
1119
  golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1122
- golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1123
1120
  golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1124
1121
  golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1125
1122
  golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
@@ -1129,17 +1126,19 @@ golang.org/x/sys v0.0.0-20220906165534-d0df966e6959/go.mod h1:oPkhp1MJrh7nUepCBc
1129
1126
  golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1130
1127
  golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1131
1128
  golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1129
+ golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1132
1130
  golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1133
- golang.org/x/sys v0.10.0 h1:SqMFp9UcQJZa+pmYuAKjd9xq1f0j5rLcDIk0mj4qAsA=
1134
- golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1131
+ golang.org/x/sys v0.9.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1132
+ golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM=
1133
+ golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1135
1134
  golang.org/x/term v0.0.0-20201113234701-d7a72108b828/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
1136
1135
  golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
1137
1136
  golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
1138
1137
  golang.org/x/term v0.0.0-20220722155259-a9ba230a4035/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
1139
1138
  golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
1140
1139
  golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U=
1141
- golang.org/x/term v0.10.0 h1:3R7pNqamzBraeqj/Tj8qt1aQ2HpmlC+Cx/qL/7hn4/c=
1142
- golang.org/x/term v0.10.0/go.mod h1:lpqdcUyK/oCiQxvxVrppt5ggO2KCZ5QblwqPnfZ6d5o=
1140
+ golang.org/x/term v0.11.0 h1:F9tnn/DA/Im8nCwm+fX+1/eBwi4qFjRT++MhtVC4ZX0=
1141
+ golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU=
1143
1142
  golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
1144
1143
  golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
1145
1144
  golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
@@ -1216,8 +1215,8 @@ golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
1216
1215
  golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
1217
1216
  golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
1218
1217
  golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
1219
- golang.org/x/tools v0.9.3 h1:Gn1I8+64MsuTb/HpH+LmQtNas23LhUVr3rYZ0eKuaMM=
1220
- golang.org/x/tools v0.9.3/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc=
1218
+ golang.org/x/tools v0.11.0 h1:EMCa6U9S2LtZXLAMoWiR/R8dAQFRqbAitmbJ2UKhoi8=
1219
+ golang.org/x/tools v0.11.0/go.mod h1:anzJrxPjNtfgiYQYirP2CPGzGLxrH2u2QBhn6Bf3qY8=
1221
1220
  golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
1222
1221
  golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
1223
1222
  golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
@@ -1446,8 +1445,8 @@ google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQ
1446
1445
  google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
1447
1446
  google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
1448
1447
  google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
1449
- google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng=
1450
- google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
1448
+ google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8=
1449
+ google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
1451
1450
  gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
1452
1451
  gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
1453
1452
  gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
@@ -118,9 +118,14 @@ var CommandUp = &cli.Command{
118
118
  },
119
119
  &cli.BoolFlag{
120
120
  Name: "no-gpu",
121
- Usage: "Launch the CPU container",
121
+ Usage: "Launch the CPU container even if it's a GPU image",
122
122
  Value: false,
123
123
  },
124
+ &cli.IntFlag{
125
+ Name: "gpus",
126
+ Usage: "Number of GPUs used in this environment",
127
+ Value: 0,
128
+ },
124
129
  &cli.BoolFlag{
125
130
  Name: "force",
126
131
  Usage: "Force rebuild and run the container although the previous container is running",
@@ -199,15 +204,15 @@ func up(clicontext *cli.Context) error {
199
204
 
200
205
  logrus.Debug("start running the environment")
201
206
  // Do not attach GPU if the flag is set.
202
- gpuEnable := clicontext.Bool("no-gpu")
203
- var gpu bool
204
- if gpuEnable {
205
- gpu = false
207
+ disableGPU := clicontext.Bool("no-gpu")
208
+ var defaultGPU bool
209
+ if disableGPU {
210
+ defaultGPU = false
206
211
  } else {
207
- gpu = builder.GPUEnabled()
212
+ defaultGPU = builder.GPUEnabled()
208
213
  }
209
- numGPU := 0
210
- if gpu {
214
+ numGPU := clicontext.Int("gpus")
215
+ if defaultGPU && numGPU == 0 {
211
216
  numGPU = 1
212
217
  }
213
218
 
@@ -18,7 +18,6 @@ import (
18
18
  "context"
19
19
  "io"
20
20
  "os"
21
- "path/filepath"
22
21
  "strings"
23
22
 
24
23
  "github.com/cockroachdb/errors"
@@ -160,12 +159,11 @@ func (b generalBuilder) Interpret() error {
160
159
  }
161
160
 
162
161
  func (b generalBuilder) Compile(ctx context.Context) (*llb.Definition, error) {
163
- envName := filepath.Base(b.BuildContextDir)
164
162
  platform, err := parsePlatform(b.Platform)
165
163
  if err != nil {
166
164
  return nil, err
167
165
  }
168
- def, err := b.graph.Compile(ctx, envName, b.PubKeyPath, platform, b.Options.ProgressMode)
166
+ def, err := b.graph.Compile(ctx, b.BuildContextDir, b.PubKeyPath, platform, b.Options.ProgressMode)
169
167
  if err != nil {
170
168
  return nil, errors.Wrap(err, "failed to compile build.envd")
171
169
  }
@@ -200,8 +198,9 @@ func (b generalBuilder) imageConfig(ctx context.Context) (string, error) {
200
198
  env := b.graph.GetEnviron()
201
199
  user := b.graph.GetUser()
202
200
  platform := b.graph.GetPlatform()
201
+ workingDir := b.graph.GetWorkingDir()
203
202
 
204
- data, err := ImageConfigStr(labels, ports, ep, env, user, platform)
203
+ data, err := ImageConfigStr(labels, ports, ep, env, user, workingDir, platform)
205
204
  if err != nil {
206
205
  return "", errors.Wrap(err, "failed to get image config")
207
206
  }