Skip to content

Commit 800bc9b

Browse files
jeremymanningclaude
andcommitted
Convert print statements to markdown cells in cloud tutorial notebooks
Fixed cloud computing tutorial notebooks by converting instructional print statements to markdown cells for better documentation structure: - AWS cloud tutorial: Convert config confirmations, security checklist, cost tips - Azure cloud tutorial: Convert setup confirmations and IP replacement notes - GCP cloud tutorial: Convert setup confirmations and instance creation notes - HuggingFace Spaces tutorial: Convert token setup and app launch instructions - Lambda Cloud tutorial: Convert setup guide and IP configuration notes This improves notebook readability and ensures proper separation between instructional content and executable code. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 8444ccc commit 800bc9b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+8767
-985
lines changed

clustrix.egg-info/PKG-INFO

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,24 @@ Requires-Dist: dill>=0.3.4
2929
Requires-Dist: click>=8.0.0
3030
Provides-Extra: kubernetes
3131
Requires-Dist: kubernetes>=20.13.0; extra == "kubernetes"
32+
Provides-Extra: aws
33+
Requires-Dist: boto3>=1.26.0; extra == "aws"
34+
Requires-Dist: kubernetes>=20.13.0; extra == "aws"
35+
Provides-Extra: azure
36+
Requires-Dist: azure-identity>=1.12.0; extra == "azure"
37+
Requires-Dist: azure-mgmt-containerservice>=20.0.0; extra == "azure"
38+
Requires-Dist: kubernetes>=20.13.0; extra == "azure"
39+
Provides-Extra: gcp
40+
Requires-Dist: google-cloud-container>=2.15.0; extra == "gcp"
41+
Requires-Dist: google-auth>=2.15.0; extra == "gcp"
42+
Requires-Dist: kubernetes>=20.13.0; extra == "gcp"
43+
Provides-Extra: cloud
44+
Requires-Dist: boto3>=1.26.0; extra == "cloud"
45+
Requires-Dist: azure-identity>=1.12.0; extra == "cloud"
46+
Requires-Dist: azure-mgmt-containerservice>=20.0.0; extra == "cloud"
47+
Requires-Dist: google-cloud-container>=2.15.0; extra == "cloud"
48+
Requires-Dist: google-auth>=2.15.0; extra == "cloud"
49+
Requires-Dist: kubernetes>=20.13.0; extra == "cloud"
3250
Provides-Extra: dev
3351
Requires-Dist: pytest>=6.0; extra == "dev"
3452
Requires-Dist: pytest-cov>=2.0; extra == "dev"
@@ -50,6 +68,11 @@ Requires-Dist: jupyter>=1.0; extra == "docs"
5068
Requires-Dist: ipython>=7.0; extra == "docs"
5169
Provides-Extra: all
5270
Requires-Dist: kubernetes>=20.13.0; extra == "all"
71+
Requires-Dist: boto3>=1.26.0; extra == "all"
72+
Requires-Dist: azure-identity>=1.12.0; extra == "all"
73+
Requires-Dist: azure-mgmt-containerservice>=20.0.0; extra == "all"
74+
Requires-Dist: google-cloud-container>=2.15.0; extra == "all"
75+
Requires-Dist: google-auth>=2.15.0; extra == "all"
5376
Requires-Dist: pytest>=6.0; extra == "all"
5477
Requires-Dist: pytest-cov>=2.0; extra == "all"
5578
Requires-Dist: black>=21.0; extra == "all"
@@ -65,7 +88,7 @@ Requires-Dist: ipython>=7.0; extra == "all"
6588
# Clustrix
6689

6790
[![Tests](https://github.com/ContextLab/clustrix/actions/workflows/tests.yml/badge.svg)](https://github.com/ContextLab/clustrix/actions/workflows/tests.yml)
68-
[![PyPI version](https://badge.fury.io/py/clustrix.svg)](https://badge.fury.io/py/clustrix)
91+
[![PyPI version](https://img.shields.io/pypi/v/clustrix.svg)](https://pypi.org/project/clustrix/)
6992
[![Documentation](https://readthedocs.org/projects/clustrix/badge/?version=latest)](https://clustrix.readthedocs.io/en/latest/?badge=latest)
7093
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
7194
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

clustrix.egg-info/SOURCES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ README.md
33
setup.py
44
clustrix/__init__.py
55
clustrix/cli.py
6+
clustrix/cloud_providers.py
67
clustrix/config.py
78
clustrix/decorator.py
89
clustrix/executor.py
@@ -19,9 +20,13 @@ clustrix.egg-info/top_level.txt
1920
tests/__init__.py
2021
tests/conftest.py
2122
tests/test_cli.py
23+
tests/test_cloud_providers.py
2224
tests/test_config.py
2325
tests/test_decorator.py
26+
tests/test_enhanced_features.py
2427
tests/test_executor.py
2528
tests/test_integration.py
29+
tests/test_kubernetes_integration.py
2630
tests/test_local_executor.py
31+
tests/test_loop_analysis.py
2732
tests/test_utils.py

clustrix.egg-info/requires.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ click>=8.0.0
66

77
[all]
88
kubernetes>=20.13.0
9+
boto3>=1.26.0
10+
azure-identity>=1.12.0
11+
azure-mgmt-containerservice>=20.0.0
12+
google-cloud-container>=2.15.0
13+
google-auth>=2.15.0
914
pytest>=6.0
1015
pytest-cov>=2.0
1116
black>=21.0
@@ -18,6 +23,23 @@ nbsphinx>=0.8
1823
jupyter>=1.0
1924
ipython>=7.0
2025

26+
[aws]
27+
boto3>=1.26.0
28+
kubernetes>=20.13.0
29+
30+
[azure]
31+
azure-identity>=1.12.0
32+
azure-mgmt-containerservice>=20.0.0
33+
kubernetes>=20.13.0
34+
35+
[cloud]
36+
boto3>=1.26.0
37+
azure-identity>=1.12.0
38+
azure-mgmt-containerservice>=20.0.0
39+
google-cloud-container>=2.15.0
40+
google-auth>=2.15.0
41+
kubernetes>=20.13.0
42+
2143
[dev]
2244
pytest>=6.0
2345
pytest-cov>=2.0
@@ -33,6 +55,11 @@ nbsphinx>=0.8
3355
jupyter>=1.0
3456
ipython>=7.0
3557

58+
[gcp]
59+
google-cloud-container>=2.15.0
60+
google-auth>=2.15.0
61+
kubernetes>=20.13.0
62+
3663
[kubernetes]
3764
kubernetes>=20.13.0
3865

68 KB
Binary file not shown.
19.5 KB
Binary file not shown.

docs/build/doctrees/index.doctree

256 Bytes
Binary file not shown.
178 KB
Binary file not shown.
23.1 KB
Binary file not shown.
Binary file not shown.
6.56 MB
Binary file not shown.

0 commit comments

Comments
 (0)