langflow-nightly 1.0.19.dev4__py3-none-any.whl → 1.0.19.dev6__py3-none-any.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.
@@ -0,0 +1 @@
1
+ """Version package."""
@@ -1,6 +1,11 @@
1
+ """Module for package versioning."""
2
+
3
+ import contextlib
4
+
5
+
1
6
  def get_version() -> str:
2
- """
3
- Retrieves the version of the package from a possible list of package names.
7
+ """Retrieves the version of the package from a possible list of package names.
8
+
4
9
  This accounts for after package names are updated for -nightly builds.
5
10
 
6
11
  Returns:
@@ -19,19 +24,19 @@ def get_version() -> str:
19
24
  ]
20
25
  _version = None
21
26
  for pkg_name in pkg_names:
22
- try:
27
+ with contextlib.suppress(ImportError, metadata.PackageNotFoundError):
23
28
  _version = metadata.version(pkg_name)
24
- except (ImportError, metadata.PackageNotFoundError):
25
- pass
26
29
 
27
30
  if _version is None:
28
- raise ValueError(f"Package not found from options {pkg_names}")
31
+ msg = f"Package not found from options {pkg_names}"
32
+ raise ValueError(msg)
29
33
 
30
34
  return _version
31
35
 
32
36
 
33
37
  def is_pre_release(v: str) -> bool:
34
- """
38
+ """Returns a boolean indicating whether the version is a pre-release version.
39
+
35
40
  Returns a boolean indicating whether the version is a pre-release version,
36
41
  as per the definition of a pre-release segment from PEP 440.
37
42
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: langflow-nightly
3
- Version: 1.0.19.dev4
3
+ Version: 1.0.19.dev6
4
4
  Summary: A Python package with a built-in web application
5
5
  Project-URL: Repository, https://github.com/langflow-ai/langflow
6
6
  Project-URL: Documentation, https://docs.langflow.org
@@ -10,7 +10,7 @@ License-File: LICENSE
10
10
  Keywords: gpt,gui,langchain,nlp,openai
11
11
  Requires-Python: <3.13,>=3.10
12
12
  Requires-Dist: assemblyai>=0.33.0
13
- Requires-Dist: astra-assistants>=2.1.4
13
+ Requires-Dist: astra-assistants~=2.2.2
14
14
  Requires-Dist: beautifulsoup4>=4.12.2
15
15
  Requires-Dist: boto3~=1.34.162
16
16
  Requires-Dist: certifi<2025.0.0,>=2023.11.17
@@ -32,27 +32,28 @@ Requires-Dist: jq>=1.8.0
32
32
  Requires-Dist: json-repair>=0.25.2
33
33
  Requires-Dist: kubernetes>=30.1.0
34
34
  Requires-Dist: langchain-anthropic>=0.1.23
35
- Requires-Dist: langchain-astradb>=0.3.5
35
+ Requires-Dist: langchain-astradb~=0.5.1
36
36
  Requires-Dist: langchain-aws>=0.1.16
37
37
  Requires-Dist: langchain-chroma>=0.1.1
38
38
  Requires-Dist: langchain-cohere>=0.1.5
39
39
  Requires-Dist: langchain-elasticsearch>=0.2.0
40
40
  Requires-Dist: langchain-google-calendar-tools>=0.0.1
41
- Requires-Dist: langchain-google-community==1.0.7
41
+ Requires-Dist: langchain-google-community~=2.0.1
42
42
  Requires-Dist: langchain-google-genai>=1.0.8
43
- Requires-Dist: langchain-google-vertexai>=1.0.10
43
+ Requires-Dist: langchain-google-vertexai~=2.0.5
44
44
  Requires-Dist: langchain-groq>=0.1.9
45
45
  Requires-Dist: langchain-milvus>=0.1.1
46
- Requires-Dist: langchain-mistralai==0.1.12
46
+ Requires-Dist: langchain-mistralai~=0.2.0
47
47
  Requires-Dist: langchain-mongodb>=0.1.6
48
- Requires-Dist: langchain-nvidia-ai-endpoints==0.1.6
49
- Requires-Dist: langchain-openai==0.1.22
50
- Requires-Dist: langchain-pinecone>=0.1.3
48
+ Requires-Dist: langchain-nvidia-ai-endpoints~=0.3.0
49
+ Requires-Dist: langchain-openai~=0.2.2
50
+ Requires-Dist: langchain-pinecone~=0.2.0
51
51
  Requires-Dist: langchain-unstructured>=0.1.2
52
- Requires-Dist: langflow-base-nightly==0.0.97.dev4
52
+ Requires-Dist: langchain~=0.3.3
53
+ Requires-Dist: langflow-base-nightly==0.0.99.dev1
53
54
  Requires-Dist: langfuse>=2.33.0
54
- Requires-Dist: langsmith>=0.1.86
55
- Requires-Dist: langwatch>=0.1.16
55
+ Requires-Dist: langsmith~=0.1.136
56
+ Requires-Dist: langwatch==0.1.16
56
57
  Requires-Dist: lark>=1.2.2
57
58
  Requires-Dist: litellm>=1.44.0
58
59
  Requires-Dist: markdown>=3.7
@@ -62,6 +63,7 @@ Requires-Dist: metaphor-python>=0.1.11
62
63
  Requires-Dist: networkx>=3.1
63
64
  Requires-Dist: nltk>=3.9.1
64
65
  Requires-Dist: numexpr>=2.8.6
66
+ Requires-Dist: opensearch-py>=2.7.1
65
67
  Requires-Dist: pgvector>=0.2.3
66
68
  Requires-Dist: psycopg2-binary>=2.9.6
67
69
  Requires-Dist: psycopg>=3.1.9
@@ -71,12 +73,12 @@ Requires-Dist: pydantic-settings==2.4.0
71
73
  Requires-Dist: pymongo>=4.6.0
72
74
  Requires-Dist: pytube>=15.0.0
73
75
  Requires-Dist: pywin32>=306; sys_platform == 'win32'
74
- Requires-Dist: qdrant-client>=1.9.0
76
+ Requires-Dist: qdrant-client~=1.9.2
75
77
  Requires-Dist: qianfan==0.3.5
76
78
  Requires-Dist: ragstack-ai-knowledge-store>=0.2.1
77
79
  Requires-Dist: redis>=5.0.1
78
80
  Requires-Dist: spider-client>=0.0.27
79
- Requires-Dist: supabase>=2.3.0
81
+ Requires-Dist: supabase~=2.6.0
80
82
  Requires-Dist: types-cachetools>=5.3.0.5
81
83
  Requires-Dist: upstash-vector>=0.5.0
82
84
  Requires-Dist: weaviate-client>=4.8
@@ -0,0 +1,7 @@
1
+ langflow/version/__init__.py,sha256=eAQv-Bw2fwYEc_aLqZjtMAZNdYFLaUgZRmUtVbMybqw,23
2
+ langflow/version/version.py,sha256=3UmtWqGaR0rQ3aqot8iGOnwz_uVFkxcHHhdglsRioCY,1210
3
+ langflow_nightly-1.0.19.dev6.dist-info/METADATA,sha256=YkHXZI9eAamJHG54BapJrkDQRpXG7h1-FD7fhjuGrYI,8072
4
+ langflow_nightly-1.0.19.dev6.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
5
+ langflow_nightly-1.0.19.dev6.dist-info/entry_points.txt,sha256=KuA_Vv7gN2FYO9GXefQck3J4kBMJO_NrECEW_8YkoWk,52
6
+ langflow_nightly-1.0.19.dev6.dist-info/licenses/LICENSE,sha256=SNSnSWIJqeHy9Uk4QlG2kxk2DDo4Enz1E0c1kL44M1k,1065
7
+ langflow_nightly-1.0.19.dev6.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- langflow/version/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- langflow/version/version.py,sha256=6fea858NTeZBh9iACirPbcpGQK9zNRyleVd9lB0YZjc,1076
3
- langflow_nightly-1.0.19.dev4.dist-info/METADATA,sha256=fEVXJJEBuARkqszEi2IRMWxIj7iAxnLmd6XH8kO-eTo,8006
4
- langflow_nightly-1.0.19.dev4.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
5
- langflow_nightly-1.0.19.dev4.dist-info/entry_points.txt,sha256=KuA_Vv7gN2FYO9GXefQck3J4kBMJO_NrECEW_8YkoWk,52
6
- langflow_nightly-1.0.19.dev4.dist-info/licenses/LICENSE,sha256=SNSnSWIJqeHy9Uk4QlG2kxk2DDo4Enz1E0c1kL44M1k,1065
7
- langflow_nightly-1.0.19.dev4.dist-info/RECORD,,