lmnr 0.2.10__tar.gz → 0.2.11__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.
- {lmnr-0.2.10 → lmnr-0.2.11}/PKG-INFO +1 -1
- {lmnr-0.2.10 → lmnr-0.2.11}/pyproject.toml +2 -2
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/zip.py +4 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/LICENSE +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/README.md +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/__init__.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/__init__.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/__main__.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/cli.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/parser/__init__.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/parser/nodes/__init__.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/parser/nodes/code.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/parser/nodes/condition.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/parser/nodes/input.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/parser/nodes/json_extractor.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/parser/nodes/llm.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/parser/nodes/output.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/parser/nodes/router.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/parser/nodes/semantic_search.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/parser/nodes/types.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/parser/parser.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/cli/parser/utils.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/sdk/__init__.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/sdk/endpoint.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/sdk/registry.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/sdk/remote_debugger.py +0 -0
- {lmnr-0.2.10 → lmnr-0.2.11}/src/lmnr/types.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "lmnr"
|
3
|
-
version = "0.2.
|
3
|
+
version = "0.2.11"
|
4
4
|
description = "Python SDK for Laminar AI"
|
5
5
|
authors = [
|
6
6
|
{ name = "lmnr.ai", email = "founders@lmnr.ai" }
|
@@ -11,7 +11,7 @@ license = "Apache-2.0"
|
|
11
11
|
|
12
12
|
[tool.poetry]
|
13
13
|
name = "lmnr"
|
14
|
-
version = "0.2.
|
14
|
+
version = "0.2.11"
|
15
15
|
description = "Python SDK for Laminar AI"
|
16
16
|
authors = ["lmnr.ai"]
|
17
17
|
readme = "README.md"
|
@@ -7,6 +7,10 @@ def zip_directory(directory_path: Path, zip_file_path: Path):
|
|
7
7
|
with zipfile.ZipFile(zip_file_path, "w", zipfile.ZIP_DEFLATED) as zipf:
|
8
8
|
for root, _, files in os.walk(directory_path):
|
9
9
|
for file in files:
|
10
|
+
# Don't include the zip file itself, otherwise goes to infinite loop
|
11
|
+
if file == zip_file_path.name:
|
12
|
+
continue
|
13
|
+
|
10
14
|
file_path = os.path.join(root, file)
|
11
15
|
arcname = os.path.relpath(file_path, directory_path)
|
12
16
|
zipf.write(file_path, arcname)
|
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
|
File without changes
|