another-ayx-python-sdk 2.4.2__py3-none-any.whl → 2.4.3__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.
- another_ayx_python_sdk/__main__.py +2 -2
- another_ayx_python_sdk/examples/AyxSdkInput/main.py +1 -1
- another_ayx_python_sdk/examples/requirements.txt +1 -1
- another_ayx_python_sdk/version.py +3 -3
- {another_ayx_python_sdk-2.4.2.dist-info → another_ayx_python_sdk-2.4.3.dist-info}/METADATA +2 -2
- {another_ayx_python_sdk-2.4.2.dist-info → another_ayx_python_sdk-2.4.3.dist-info}/RECORD +10 -10
- {another_ayx_python_sdk-2.4.2.dist-info → another_ayx_python_sdk-2.4.3.dist-info}/WHEEL +1 -1
- {another_ayx_python_sdk-2.4.2.dist-info → another_ayx_python_sdk-2.4.3.dist-info}/entry_points.txt +0 -0
- {another_ayx_python_sdk-2.4.2.dist-info → another_ayx_python_sdk-2.4.3.dist-info}/licenses/LICENSE +0 -0
- {another_ayx_python_sdk-2.4.2.dist-info → another_ayx_python_sdk-2.4.3.dist-info}/top_level.txt +0 -0
@@ -136,8 +136,8 @@ def pin_ayx_version_to_requirements(requirements_path: Path) -> None:
|
|
136
136
|
with open(requirements_path, "r") as req_file:
|
137
137
|
lines = req_file.readlines()
|
138
138
|
for line_num in range(len(lines)):
|
139
|
-
if re.match(r"^
|
140
|
-
lines[line_num] = f"
|
139
|
+
if re.match(r"^another_ayx_python_sdk$", lines[line_num]):
|
140
|
+
lines[line_num] = f"another_ayx_python_sdk=={short_version}"
|
141
141
|
req_file = open(requirements_path, "w")
|
142
142
|
req_file.writelines(lines)
|
143
143
|
|
@@ -78,7 +78,7 @@ class AyxSdkInput(PluginV2):
|
|
78
78
|
df = pd.DataFrame(
|
79
79
|
{
|
80
80
|
"x": [1, 2, 3],
|
81
|
-
"y": ["hello", "world", "from
|
81
|
+
"y": ["hello", "world", "from another_ayx_python_sdk!"],
|
82
82
|
"z": [self.config_value, self.config_value, self.config_value],
|
83
83
|
}
|
84
84
|
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: another-ayx-python-sdk
|
3
|
-
Version: 2.4.
|
3
|
+
Version: 2.4.3
|
4
4
|
Summary: Python SDK for Alteryx Plugin Development and Testing
|
5
5
|
Author: Jupiter Bakakeu
|
6
6
|
Author-email: Jupiter Bakakeu <jupiter.bakakeu@gmail.com>
|
@@ -31,7 +31,7 @@ Requires-Dist: pyarrow
|
|
31
31
|
Requires-Dist: xmltodict
|
32
32
|
Requires-Dist: pyyaml
|
33
33
|
Requires-Dist: requests
|
34
|
-
Requires-Dist: another-ayx-plugin-cli
|
34
|
+
Requires-Dist: another-ayx-plugin-cli>=1.2.4
|
35
35
|
Requires-Dist: typing-extensions
|
36
36
|
Requires-Dist: pypac
|
37
37
|
Requires-Dist: pandas
|
@@ -1,6 +1,6 @@
|
|
1
1
|
another_ayx_python_sdk/__init__.py,sha256=rW_9jQFFsVtSstJyG_mC133azLPSahYsQNjBO2wGbvE,666
|
2
|
-
another_ayx_python_sdk/__main__.py,sha256=
|
3
|
-
another_ayx_python_sdk/version.py,sha256=
|
2
|
+
another_ayx_python_sdk/__main__.py,sha256=YW5qSlVhtruF6vSLHAFoosqUfsLLCgDPO7wU7sQx0Gs,15718
|
3
|
+
another_ayx_python_sdk/version.py,sha256=JkTa0bq2ReK4NyAiyCheQsxOYpuB3d_yi8inBj5wuD8,160
|
4
4
|
another_ayx_python_sdk/assets/workspace_files/__init__.py,sha256=_B9-372ZW6ePlxj3OqOdbC4Pm0bnsxO_1p0LQO5u2XI,661
|
5
5
|
another_ayx_python_sdk/assets/workspace_files/setup.py,sha256=WNhM036Hw3i7upZ7sNeTv0i-f-MkOAViP6X6T2b055M,1250
|
6
6
|
another_ayx_python_sdk/cli/__init__.py,sha256=P_f8aZgkOMG8ipVYsJgHT_KZDzrGe7VJ3sjX84HR_rI,656
|
@@ -47,8 +47,8 @@ another_ayx_python_sdk/core/__pycache__/provider_base.cpython-310.pyc,sha256=XX-
|
|
47
47
|
another_ayx_python_sdk/core/__pycache__/record_packet.cpython-310.pyc,sha256=K4Fr1BKPXYHj_UAyYzVYOeLf_xoypdbrWusqW7StWlk,2417
|
48
48
|
another_ayx_python_sdk/core/__pycache__/record_packet_base.cpython-310.pyc,sha256=Jm8FvVo9GeeXox9SYnlH-2Mu4Nt5xvfTpsjCYZBdRJQ,3732
|
49
49
|
another_ayx_python_sdk/core/__pycache__/register_plugin.cpython-310.pyc,sha256=g2lnCknvsGmbwAAD02OfuPxq0GJ_Ah-CUPpVFvNJ0ws,3018
|
50
|
-
another_ayx_python_sdk/examples/requirements.txt,sha256=
|
51
|
-
another_ayx_python_sdk/examples/AyxSdkInput/main.py,sha256=
|
50
|
+
another_ayx_python_sdk/examples/requirements.txt,sha256=sHq0-QPJH4FKfTejTopVRRkgregIpUkmjA3h6MLQiKk,297
|
51
|
+
another_ayx_python_sdk/examples/AyxSdkInput/main.py,sha256=ppX1RohBbxkaNbCm6r5f5jMSefP89H9sYUwjBoNzUbs,3294
|
52
52
|
another_ayx_python_sdk/examples/AyxSdkMultiConnectionsMultiOutputAnchor/main.py,sha256=aMKMKS8Tu03m82ZIFG3FCm-3JNGi7c51z_SlsJJm7MA,3971
|
53
53
|
another_ayx_python_sdk/examples/AyxSdkMultiConnectionsMultiOutputAnchor/__pycache__/main.cpython-310.pyc,sha256=7ltz8-a-PyJbqMCX0kDkI0nX3KyYynMAlZfvR-JCLgs,4018
|
54
54
|
another_ayx_python_sdk/examples/AyxSdkMultipleInputAnchors/AyxSdkMultipleInputAnchorsConfig.xml,sha256=PhzSEozpfxVeJZ-aCEr8XVF18lOgLJdZQ-08HDZARRU,1085
|
@@ -395,9 +395,9 @@ another_ayx_python_sdk/test_harness/__pycache__/__main__.cpython-310.pyc,sha256=
|
|
395
395
|
another_ayx_python_sdk/test_harness/__pycache__/plugin_runner.cpython-310.pyc,sha256=x1mnw7Fe0mLWImALcMBxe_9bbLtClkDoMORGigyOl6k,12315
|
396
396
|
another_ayx_python_sdk/test_harness/__pycache__/process_lifecycle_manager.cpython-310.pyc,sha256=Tbh8cz3wbDSa-MVPpWfglkewGlmEedgs4pDMEU6pR90,2766
|
397
397
|
another_ayx_python_sdk/test_harness/__pycache__/sdk_engine_service.cpython-310.pyc,sha256=PD6MeaHo-E9_Y5pYGXmHV622isQXQdrAScVpRs9S6EY,3878
|
398
|
-
another_ayx_python_sdk-2.4.
|
399
|
-
another_ayx_python_sdk-2.4.
|
400
|
-
another_ayx_python_sdk-2.4.
|
401
|
-
another_ayx_python_sdk-2.4.
|
402
|
-
another_ayx_python_sdk-2.4.
|
403
|
-
another_ayx_python_sdk-2.4.
|
398
|
+
another_ayx_python_sdk-2.4.3.dist-info/licenses/LICENSE,sha256=idX7EpV9wC_oqjijMHjcA6svWNkQJBUr_ZoV2WtRegU,1092
|
399
|
+
another_ayx_python_sdk-2.4.3.dist-info/METADATA,sha256=OQW17yV_yUEpAF9rgPS48cQJrd_NowKjpSCZtgBAguM,2190
|
400
|
+
another_ayx_python_sdk-2.4.3.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
|
401
|
+
another_ayx_python_sdk-2.4.3.dist-info/entry_points.txt,sha256=NqVRYuHblqbm6riofdadL-81b6QzS31HgSTiNGyrmU0,80
|
402
|
+
another_ayx_python_sdk-2.4.3.dist-info/top_level.txt,sha256=uervU294PnXXmasUBpVYCnJglldB2hUIUzEDrtSxX5I,23
|
403
|
+
another_ayx_python_sdk-2.4.3.dist-info/RECORD,,
|
{another_ayx_python_sdk-2.4.2.dist-info → another_ayx_python_sdk-2.4.3.dist-info}/entry_points.txt
RENAMED
File without changes
|
{another_ayx_python_sdk-2.4.2.dist-info → another_ayx_python_sdk-2.4.3.dist-info}/licenses/LICENSE
RENAMED
File without changes
|
{another_ayx_python_sdk-2.4.2.dist-info → another_ayx_python_sdk-2.4.3.dist-info}/top_level.txt
RENAMED
File without changes
|