envd 0.3.47__py2.py3-none-musllinux_1_2_x86_64.whl → 0.4.0__py2.py3-none-musllinux_1_2_x86_64.whl
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.47.data → envd-0.4.0.data}/data/bin/envd +0 -0
- {envd-0.3.47.dist-info → envd-0.4.0.dist-info}/METADATA +11 -12
- envd-0.4.0.dist-info/RECORD +6 -0
- envd-0.3.47.dist-info/RECORD +0 -6
- {envd-0.3.47.dist-info → envd-0.4.0.dist-info}/LICENSE +0 -0
- {envd-0.3.47.dist-info → envd-0.4.0.dist-info}/WHEEL +0 -0
- {envd-0.3.47.dist-info → envd-0.4.0.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: envd
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: A development environment management tool for data scientists.
|
|
5
5
|
Home-page: https://github.com/tensorchord/envd
|
|
6
6
|
Author: TensorChord
|
|
@@ -12,12 +12,11 @@ Classifier: Topic :: Software Development :: Build Tools
|
|
|
12
12
|
Classifier: Intended Audience :: Science/Research
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
14
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
18
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
19
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
20
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
20
|
Requires-Python: >=3.6
|
|
22
21
|
Description-Content-Type: text/markdown
|
|
23
22
|
License-File: LICENSE
|
|
@@ -30,8 +29,8 @@ License-File: LICENSE
|
|
|
30
29
|
</div>
|
|
31
30
|
|
|
32
31
|
<p align=center>
|
|
33
|
-
<a href="https://discord.gg/KqswhpVgdU"><img alt="discord invitation link" src="https://
|
|
34
|
-
<a href="https://twitter.com/TensorChord"><img src="https://img.shields.io/twitter/follow/tensorchord?style=
|
|
32
|
+
<a href="https://discord.gg/KqswhpVgdU"><img alt="discord invitation link" src="https://img.shields.io/discord/974584200327991326?style=flat&logo=discord&cacheSeconds=60"></a>
|
|
33
|
+
<a href="https://twitter.com/TensorChord"><img src="https://img.shields.io/twitter/follow/tensorchord?style=flat&logo=X&cacheSeconds=60" alt="trackgit-views" /></a>
|
|
35
34
|
<a href="https://pypi.org/project/envd"><img src="https://img.shields.io/pypi/pyversions/envd" alt="Python Version" /></a>
|
|
36
35
|
<a href="https://github.com/tensorchord/envd#contributors-"><img alt="all-contributors" src="https://img.shields.io/github/all-contributors/tensorchord/envd/main"></a>
|
|
37
36
|
<a href="https://pypi.org/project/envd/"><img alt="envd package downloads" src="https://static.pepy.tech/personalized-badge/envd?period=month&units=international_system&left_color=grey&right_color=brightgreen&left_text=downloads/month"</a>
|
|
@@ -116,7 +115,7 @@ Forget copy-pasting Dockerfile instructions - use envd to easily build functions
|
|
|
116
115
|
envdlib = include("https://github.com/tensorchord/envdlib")
|
|
117
116
|
|
|
118
117
|
def build():
|
|
119
|
-
base(os="
|
|
118
|
+
base(os="ubuntu22.04", language="python")
|
|
120
119
|
envdlib.tensorboard(host_port=8888)
|
|
121
120
|
```
|
|
122
121
|
|
|
@@ -200,7 +199,7 @@ The build manifest `build.envd` looks like:
|
|
|
200
199
|
|
|
201
200
|
```python title=build.envd
|
|
202
201
|
def build():
|
|
203
|
-
base(os="
|
|
202
|
+
base(os="ubuntu22.04", language="python3")
|
|
204
203
|
# Configure the pip index if needed.
|
|
205
204
|
# config.pip_index(url = "https://pypi.tuna.tsinghua.edu.cn/simple")
|
|
206
205
|
install.python_packages(name = [
|
|
@@ -251,7 +250,7 @@ Please edit the `build.envd` to enable jupyter notebook:
|
|
|
251
250
|
|
|
252
251
|
```python title=build.envd
|
|
253
252
|
def build():
|
|
254
|
-
base(os="
|
|
253
|
+
base(os="ubuntu22.04", language="python3")
|
|
255
254
|
# Configure the pip index if needed.
|
|
256
255
|
# config.pip_index(url = "https://pypi.tuna.tsinghua.edu.cn/simple")
|
|
257
256
|
install.python_packages(name = [
|
|
@@ -272,7 +271,7 @@ envd-quick-start http://localhost:42779 envd-quick-start.envd /home/g
|
|
|
272
271
|
|
|
273
272
|
## Difference between v0 and v1
|
|
274
273
|
|
|
275
|
-
>
|
|
274
|
+
> [!NOTE]
|
|
276
275
|
> To use the `v1` config file, add `# syntax=v1` to the first line of your `build.envd` file.
|
|
277
276
|
|
|
278
277
|
| Features | v0 | v1 |
|
|
@@ -285,11 +284,11 @@ envd-quick-start http://localhost:42779 envd-quick-start.envd /home/g
|
|
|
285
284
|
| support installing multiple languages | ⚠️ | ✅ |
|
|
286
285
|
| support `moby` builder | ❌ | ✅ <sup>[(a)](#v1-moby)</sup> |
|
|
287
286
|
|
|
288
|
-
>
|
|
287
|
+
> [!NOTE]
|
|
289
288
|
> <a name="v1-moby">(a)</a> To use the `moby` builder, you will need to create a new context with `envd context create --name moby-test --builder moby-worker --use`.
|
|
290
289
|
> For more information about the `moby` builder, check the [issue-1693](https://github.com/tensorchord/envd/issues/1693).
|
|
291
290
|
|
|
292
|
-
>
|
|
291
|
+
> [!IMPORTANT]
|
|
293
292
|
> For more details, check the [upgrade to v1](https://envd.tensorchord.ai/guide/v1.html) doc.
|
|
294
293
|
|
|
295
294
|
## More on documentation 📝
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
envd-0.4.0.data/data/bin/envd,sha256=4QV-B5EdOdQS6PlhJBx9C0qLq5pU0EcXPnb0G9PdxhE,40501400
|
|
2
|
+
envd-0.4.0.dist-info/top_level.txt,sha256=1OHC94DZ5nAbn2I1jx5cCPXDMEO0oyGjaWD3VA5sri0,5
|
|
3
|
+
envd-0.4.0.dist-info/RECORD,,
|
|
4
|
+
envd-0.4.0.dist-info/LICENSE,sha256=eyTBZk0yxn_VnN5cGn9-0nJCXtMCubZ2iFQZCEODWxk,11341
|
|
5
|
+
envd-0.4.0.dist-info/METADATA,sha256=puAQip-MVDrMwcClBi_kspOCpe9OR8OSMZ5DqoQ0f5g,39344
|
|
6
|
+
envd-0.4.0.dist-info/WHEEL,sha256=2mM8kmnCemg6xH3QeqJfWIRiHV1m29_nzdqV6eJEF30,145
|
envd-0.3.47.dist-info/RECORD
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
envd-0.3.47.dist-info/RECORD,,
|
|
2
|
-
envd-0.3.47.dist-info/METADATA,sha256=ri6IyKZqUjBBwmSXARSybo711oFLbCquT9dRAjIJuZI,39345
|
|
3
|
-
envd-0.3.47.dist-info/WHEEL,sha256=2mM8kmnCemg6xH3QeqJfWIRiHV1m29_nzdqV6eJEF30,145
|
|
4
|
-
envd-0.3.47.dist-info/top_level.txt,sha256=1OHC94DZ5nAbn2I1jx5cCPXDMEO0oyGjaWD3VA5sri0,5
|
|
5
|
-
envd-0.3.47.dist-info/LICENSE,sha256=eyTBZk0yxn_VnN5cGn9-0nJCXtMCubZ2iFQZCEODWxk,11341
|
|
6
|
-
envd-0.3.47.data/data/bin/envd,sha256=1F7SuYaJUX2VHhSqppxV4yqgPgyZmd9-gWpV__y-6xQ,40312984
|
|
File without changes
|
|
File without changes
|
|
File without changes
|