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