blocks-cli 0.1.41__tar.gz → 0.1.42__tar.gz
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.
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/PKG-INFO +2 -2
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/commands/push.py +3 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/setup.py +2 -2
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/LICENSE +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/MANIFEST.in +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/README.md +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/__init__.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/api.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/builds.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/bundles.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/commands/__base__.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/commands/__init__.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/commands/configure.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/commands/create.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/commands/init.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/commands/test.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/config/__init__.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/config/auth.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/config/config.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/console.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/fs.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/package.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli/registration.py +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/blocks_cli.egg-info/SOURCES.txt +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/requirements.txt +0 -0
- {blocks-cli-0.1.41 → blocks_cli-0.1.42}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
|
-
Name:
|
|
3
|
-
Version: 0.1.
|
|
2
|
+
Name: blocks_cli
|
|
3
|
+
Version: 0.1.42
|
|
4
4
|
Summary: CLI tool for Blocks, a platform for writing custom AI-enabled codebase automations in Python. Leverage a full codebase-aware API. Automatically trigger automations from Github, Slack, and other providers.
|
|
5
5
|
Home-page: https://github.com/BlocksOrg/sdk
|
|
6
6
|
Author: BlocksOrg
|
|
@@ -187,6 +187,7 @@ def push(
|
|
|
187
187
|
runtime = task_kwargs.get("runtime") # e.x. "python3.10"
|
|
188
188
|
plugins = task_kwargs.get("plugins", [])
|
|
189
189
|
required_env_vars = task_kwargs.get("required_env_vars", [])
|
|
190
|
+
features = task_kwargs.get("features", [])
|
|
190
191
|
|
|
191
192
|
repos: list = trigger_kwargs.get("repos", [])
|
|
192
193
|
|
|
@@ -215,6 +216,7 @@ def push(
|
|
|
215
216
|
"runtime": runtime,
|
|
216
217
|
"plugins": plugins,
|
|
217
218
|
"required_env_vars": required_env_vars,
|
|
219
|
+
"features": features,
|
|
218
220
|
"vcpus": vcpus,
|
|
219
221
|
"memory": memory,
|
|
220
222
|
"gpu_count": gpu_count,
|
|
@@ -245,6 +247,7 @@ def push(
|
|
|
245
247
|
"plugins",
|
|
246
248
|
"config_schema",
|
|
247
249
|
"required_env_vars",
|
|
250
|
+
"features",
|
|
248
251
|
"is_agent"
|
|
249
252
|
]
|
|
250
253
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|