envd 0.3.47__py2.py3-none-macosx_11_0_arm64.whl → 0.4.3__py2.py3-none-macosx_11_0_arm64.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
|
|
@@ -11,13 +11,9 @@ Classifier: Topic :: Software Development :: Build Tools
|
|
|
11
11
|
Classifier: Intended Audience :: Science/Research
|
|
12
12
|
Classifier: Intended Audience :: Developers
|
|
13
13
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
|
-
Classifier: Programming Language :: Python
|
|
15
|
-
Classifier: Programming Language :: Python ::
|
|
16
|
-
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
-
Requires-Python: >=3.6
|
|
14
|
+
Classifier: Programming Language :: Python
|
|
15
|
+
Classifier: Programming Language :: Python :: 2
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
21
17
|
Description-Content-Type: text/markdown
|
|
22
18
|
License-File: LICENSE
|
|
23
19
|
|
|
@@ -29,8 +25,8 @@ License-File: LICENSE
|
|
|
29
25
|
</div>
|
|
30
26
|
|
|
31
27
|
<p align=center>
|
|
32
|
-
<a href="https://discord.gg/KqswhpVgdU"><img alt="discord invitation link" src="https://
|
|
33
|
-
<a href="https://twitter.com/TensorChord"><img src="https://img.shields.io/twitter/follow/tensorchord?style=
|
|
28
|
+
<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>
|
|
29
|
+
<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>
|
|
34
30
|
<a href="https://pypi.org/project/envd"><img src="https://img.shields.io/pypi/pyversions/envd" alt="Python Version" /></a>
|
|
35
31
|
<a href="https://github.com/tensorchord/envd#contributors-"><img alt="all-contributors" src="https://img.shields.io/github/all-contributors/tensorchord/envd/main"></a>
|
|
36
32
|
<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>
|
|
@@ -115,7 +111,7 @@ Forget copy-pasting Dockerfile instructions - use envd to easily build functions
|
|
|
115
111
|
envdlib = include("https://github.com/tensorchord/envdlib")
|
|
116
112
|
|
|
117
113
|
def build():
|
|
118
|
-
base(os="
|
|
114
|
+
base(os="ubuntu22.04", language="python")
|
|
119
115
|
envdlib.tensorboard(host_port=8888)
|
|
120
116
|
```
|
|
121
117
|
|
|
@@ -199,7 +195,7 @@ The build manifest `build.envd` looks like:
|
|
|
199
195
|
|
|
200
196
|
```python title=build.envd
|
|
201
197
|
def build():
|
|
202
|
-
base(os="
|
|
198
|
+
base(os="ubuntu22.04", language="python3")
|
|
203
199
|
# Configure the pip index if needed.
|
|
204
200
|
# config.pip_index(url = "https://pypi.tuna.tsinghua.edu.cn/simple")
|
|
205
201
|
install.python_packages(name = [
|
|
@@ -250,7 +246,7 @@ Please edit the `build.envd` to enable jupyter notebook:
|
|
|
250
246
|
|
|
251
247
|
```python title=build.envd
|
|
252
248
|
def build():
|
|
253
|
-
base(os="
|
|
249
|
+
base(os="ubuntu22.04", language="python3")
|
|
254
250
|
# Configure the pip index if needed.
|
|
255
251
|
# config.pip_index(url = "https://pypi.tuna.tsinghua.edu.cn/simple")
|
|
256
252
|
install.python_packages(name = [
|
|
@@ -271,7 +267,7 @@ envd-quick-start http://localhost:42779 envd-quick-start.envd /home/g
|
|
|
271
267
|
|
|
272
268
|
## Difference between v0 and v1
|
|
273
269
|
|
|
274
|
-
>
|
|
270
|
+
> [!NOTE]
|
|
275
271
|
> To use the `v1` config file, add `# syntax=v1` to the first line of your `build.envd` file.
|
|
276
272
|
|
|
277
273
|
| Features | v0 | v1 |
|
|
@@ -284,11 +280,11 @@ envd-quick-start http://localhost:42779 envd-quick-start.envd /home/g
|
|
|
284
280
|
| support installing multiple languages | ⚠️ | ✅ |
|
|
285
281
|
| support `moby` builder | ❌ | ✅ <sup>[(a)](#v1-moby)</sup> |
|
|
286
282
|
|
|
287
|
-
>
|
|
283
|
+
> [!NOTE]
|
|
288
284
|
> <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`.
|
|
289
285
|
> For more information about the `moby` builder, check the [issue-1693](https://github.com/tensorchord/envd/issues/1693).
|
|
290
286
|
|
|
291
|
-
>
|
|
287
|
+
> [!IMPORTANT]
|
|
292
288
|
> For more details, check the [upgrade to v1](https://envd.tensorchord.ai/guide/v1.html) doc.
|
|
293
289
|
|
|
294
290
|
## 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/RECORD,,
|
|
3
|
+
envd-0.4.3.dist-info/LICENSE,sha256=eyTBZk0yxn_VnN5cGn9-0nJCXtMCubZ2iFQZCEODWxk,11341
|
|
4
|
+
envd-0.4.3.dist-info/WHEEL,sha256=9hJ1FuEZbvzXm6h3sCN_KazEtrTFzJoM157UZyUxwA0,138
|
|
5
|
+
envd-0.4.3.dist-info/top_level.txt,sha256=1OHC94DZ5nAbn2I1jx5cCPXDMEO0oyGjaWD3VA5sri0,5
|
|
6
|
+
envd-0.4.3.dist-info/METADATA,sha256=KdHN5UyYfe1ED1dhg3aBoxwYo_39ChN4lkLLvzEBYH0,39186
|
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/RECORD,,
|
|
3
|
-
envd-0.3.47.dist-info/LICENSE,sha256=eyTBZk0yxn_VnN5cGn9-0nJCXtMCubZ2iFQZCEODWxk,11341
|
|
4
|
-
envd-0.3.47.dist-info/WHEEL,sha256=9hJ1FuEZbvzXm6h3sCN_KazEtrTFzJoM157UZyUxwA0,138
|
|
5
|
-
envd-0.3.47.dist-info/top_level.txt,sha256=1OHC94DZ5nAbn2I1jx5cCPXDMEO0oyGjaWD3VA5sri0,5
|
|
6
|
-
envd-0.3.47.dist-info/METADATA,sha256=Et7zkO0JUOlUGp8P8d0TcP5pnN-TXgvfAbMz4SIkdOM,39325
|
|
File without changes
|
|
File without changes
|
|
File without changes
|