connections-sdk 3.2.1__tar.gz → 3.2.2__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.
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/PKG-INFO +1 -2
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/pyproject.toml +3 -3
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/LICENSE +0 -0
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/README.md +0 -0
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/src/connections_sdk/__init__.py +0 -0
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/src/connections_sdk/client.py +0 -0
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/src/connections_sdk/config.py +0 -0
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/src/connections_sdk/exceptions.py +0 -0
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/src/connections_sdk/models.py +0 -0
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/src/connections_sdk/providers/adyen.py +0 -0
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/src/connections_sdk/providers/checkout.py +0 -0
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/src/connections_sdk/utils/__init__.py +0 -0
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/src/connections_sdk/utils/model_utils.py +0 -0
- {connections_sdk-3.2.1 → connections_sdk-3.2.2}/src/connections_sdk/utils/request_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: connections_sdk
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.2
|
|
4
4
|
Summary: A Python SDK for payment processing
|
|
5
5
|
Author: Basis Theory
|
|
6
6
|
Author-email: support@basistheory.com
|
|
@@ -13,7 +13,6 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.13
|
|
15
15
|
Requires-Dist: deepmerge (>=2.0,<3.0)
|
|
16
|
-
Requires-Dist: faker (>=34.0.0,<35.0.0)
|
|
17
16
|
Requires-Dist: requests (>=2.32.2)
|
|
18
17
|
Description-Content-Type: text/markdown
|
|
19
18
|
|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "connections_sdk"
|
|
7
|
-
version = "3.2.
|
|
7
|
+
version = "3.2.2"
|
|
8
8
|
description = "A Python SDK for payment processing"
|
|
9
9
|
authors = ["Basis Theory <support@basistheory.com>"]
|
|
10
10
|
readme = "README.md"
|
|
@@ -12,13 +12,13 @@ readme = "README.md"
|
|
|
12
12
|
[tool.poetry.dependencies]
|
|
13
13
|
python = ">=3.8"
|
|
14
14
|
requests = ">=2.32.2"
|
|
15
|
-
faker = "^34.0.0"
|
|
16
15
|
deepmerge = "^2.0"
|
|
17
16
|
|
|
18
17
|
[tool.poetry.group.test.dependencies]
|
|
18
|
+
faker = "^34.0.0"
|
|
19
19
|
pytest = ">=6.0"
|
|
20
20
|
pytest-cov = ">=2.0"
|
|
21
21
|
python-dotenv = ">=1.0.0"
|
|
22
22
|
mypy = ">=1.0.0"
|
|
23
23
|
types-requests = ">=2.31.0"
|
|
24
|
-
basistheory = { git = "https://github.com/Basis-Theory/basistheory-python.git" }
|
|
24
|
+
basistheory = { git = "https://github.com/Basis-Theory/basistheory-python.git" }
|
|
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
|