envd 0.3.47__py2.py3-none-macosx_10_9_x86_64.whl → 0.4.3__py2.py3-none-macosx_10_9_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.3.data}/data/bin/envd +0 -0
- {envd-0.3.47.dist-info → envd-0.4.3.dist-info}/METADATA +12 -16
- envd-0.4.3.dist-info/RECORD +6 -0
- envd-0.3.47.dist-info/RECORD +0 -6
- {envd-0.3.47.dist-info → envd-0.4.3.dist-info}/LICENSE +0 -0
- {envd-0.3.47.dist-info → envd-0.4.3.dist-info}/WHEEL +0 -0
- {envd-0.3.47.dist-info → envd-0.4.3.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
|
|
3
|
+
Version: 0.4.3
|
|
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,13 +12,9 @@ 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
|
|
16
|
-
Classifier: Programming Language :: Python ::
|
|
17
|
-
Classifier: Programming Language :: Python :: 3
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
-
Requires-Python: >=3.6
|
|
15
|
+
Classifier: Programming Language :: Python
|
|
16
|
+
Classifier: Programming Language :: Python :: 2
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
22
18
|
Description-Content-Type: text/markdown
|
|
23
19
|
License-File: LICENSE
|
|
24
20
|
|
|
@@ -30,8 +26,8 @@ License-File: LICENSE
|
|
|
30
26
|
</div>
|
|
31
27
|
|
|
32
28
|
<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=
|
|
29
|
+
<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>
|
|
30
|
+
<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
31
|
<a href="https://pypi.org/project/envd"><img src="https://img.shields.io/pypi/pyversions/envd" alt="Python Version" /></a>
|
|
36
32
|
<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
33
|
<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 +112,7 @@ Forget copy-pasting Dockerfile instructions - use envd to easily build functions
|
|
|
116
112
|
envdlib = include("https://github.com/tensorchord/envdlib")
|
|
117
113
|
|
|
118
114
|
def build():
|
|
119
|
-
base(os="
|
|
115
|
+
base(os="ubuntu22.04", language="python")
|
|
120
116
|
envdlib.tensorboard(host_port=8888)
|
|
121
117
|
```
|
|
122
118
|
|
|
@@ -200,7 +196,7 @@ The build manifest `build.envd` looks like:
|
|
|
200
196
|
|
|
201
197
|
```python title=build.envd
|
|
202
198
|
def build():
|
|
203
|
-
base(os="
|
|
199
|
+
base(os="ubuntu22.04", language="python3")
|
|
204
200
|
# Configure the pip index if needed.
|
|
205
201
|
# config.pip_index(url = "https://pypi.tuna.tsinghua.edu.cn/simple")
|
|
206
202
|
install.python_packages(name = [
|
|
@@ -251,7 +247,7 @@ Please edit the `build.envd` to enable jupyter notebook:
|
|
|
251
247
|
|
|
252
248
|
```python title=build.envd
|
|
253
249
|
def build():
|
|
254
|
-
base(os="
|
|
250
|
+
base(os="ubuntu22.04", language="python3")
|
|
255
251
|
# Configure the pip index if needed.
|
|
256
252
|
# config.pip_index(url = "https://pypi.tuna.tsinghua.edu.cn/simple")
|
|
257
253
|
install.python_packages(name = [
|
|
@@ -272,7 +268,7 @@ envd-quick-start http://localhost:42779 envd-quick-start.envd /home/g
|
|
|
272
268
|
|
|
273
269
|
## Difference between v0 and v1
|
|
274
270
|
|
|
275
|
-
>
|
|
271
|
+
> [!NOTE]
|
|
276
272
|
> To use the `v1` config file, add `# syntax=v1` to the first line of your `build.envd` file.
|
|
277
273
|
|
|
278
274
|
| Features | v0 | v1 |
|
|
@@ -285,11 +281,11 @@ envd-quick-start http://localhost:42779 envd-quick-start.envd /home/g
|
|
|
285
281
|
| support installing multiple languages | ⚠️ | ✅ |
|
|
286
282
|
| support `moby` builder | ❌ | ✅ <sup>[(a)](#v1-moby)</sup> |
|
|
287
283
|
|
|
288
|
-
>
|
|
284
|
+
> [!NOTE]
|
|
289
285
|
> <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
286
|
> For more information about the `moby` builder, check the [issue-1693](https://github.com/tensorchord/envd/issues/1693).
|
|
291
287
|
|
|
292
|
-
>
|
|
288
|
+
> [!IMPORTANT]
|
|
293
289
|
> For more details, check the [upgrade to v1](https://envd.tensorchord.ai/guide/v1.html) doc.
|
|
294
290
|
|
|
295
291
|
## More on documentation 📝
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
envd-0.4.3.data/data/bin/envd,sha256=FaPjNja_XvbivWo-k6g2xiSt87s3BFesVvuq4KtLvxo,81738370
|
|
2
|
+
envd-0.4.3.dist-info/LICENSE,sha256=eyTBZk0yxn_VnN5cGn9-0nJCXtMCubZ2iFQZCEODWxk,11341
|
|
3
|
+
envd-0.4.3.dist-info/METADATA,sha256=3so7eiLDOooOwZwi1DwDBtHc63Y4JLJa-cReHDvoXAc,39206
|
|
4
|
+
envd-0.4.3.dist-info/WHEEL,sha256=BNCoUqXb4hnMm0sUJGe-46wT6lTr6jjYTlnKpXeRRXs,141
|
|
5
|
+
envd-0.4.3.dist-info/top_level.txt,sha256=1OHC94DZ5nAbn2I1jx5cCPXDMEO0oyGjaWD3VA5sri0,5
|
|
6
|
+
envd-0.4.3.dist-info/RECORD,,
|
envd-0.3.47.dist-info/RECORD
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
envd-0.3.47.data/data/bin/envd,sha256=BFGmprS4aRV4VahrHWhScuPZjAVvbfu_et1zvVhFXQ0,81356786
|
|
2
|
-
envd-0.3.47.dist-info/LICENSE,sha256=eyTBZk0yxn_VnN5cGn9-0nJCXtMCubZ2iFQZCEODWxk,11341
|
|
3
|
-
envd-0.3.47.dist-info/METADATA,sha256=ri6IyKZqUjBBwmSXARSybo711oFLbCquT9dRAjIJuZI,39345
|
|
4
|
-
envd-0.3.47.dist-info/WHEEL,sha256=BNCoUqXb4hnMm0sUJGe-46wT6lTr6jjYTlnKpXeRRXs,141
|
|
5
|
-
envd-0.3.47.dist-info/top_level.txt,sha256=1OHC94DZ5nAbn2I1jx5cCPXDMEO0oyGjaWD3VA5sri0,5
|
|
6
|
-
envd-0.3.47.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|