producteca 1.0.3__tar.gz → 1.0.4__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.
- {producteca-1.0.3 → producteca-1.0.4}/PKG-INFO +2 -2
- {producteca-1.0.3 → producteca-1.0.4}/pyproject.toml +2 -2
- {producteca-1.0.3 → producteca-1.0.4}/README.md +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/__init__.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/abstract/__init__.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/abstract/abstract_dataclass.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/config/__init__.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/config/config.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/payments/__init__.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/payments/payments.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/products/__init__.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/products/products.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/sales_orders/__init__.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/sales_orders/sales_orders.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/search/__init__.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/search/search.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/search/search_sale_orders.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/shipments/__init__.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/shipments/shipment.py +0 -0
- {producteca-1.0.3 → producteca-1.0.4}/producteca/shipments/test_shipment.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: producteca
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.4
|
4
4
|
Summary:
|
5
5
|
Author: Chroma Agency, Matias Rivera
|
6
6
|
Author-email: mrivera@chroma.agency
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
15
15
|
Classifier: Programming Language :: Python :: 3.13
|
16
16
|
Requires-Dist: coverage (>=7.6.3,<8.0.0)
|
17
|
-
Requires-Dist: pydantic (==2.
|
17
|
+
Requires-Dist: pydantic (==2.5.3)
|
18
18
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
19
19
|
Description-Content-Type: text/markdown
|
20
20
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "producteca"
|
3
|
-
version = "1.0.
|
3
|
+
version = "1.0.4"
|
4
4
|
description = ""
|
5
5
|
authors = ["Chroma Agency, Matias Rivera <mrivera@chroma.agency>"]
|
6
6
|
readme = "README.md"
|
@@ -15,7 +15,7 @@ main = 'logseek:main'
|
|
15
15
|
python = "^3.7"
|
16
16
|
requests = "^2.32.3"
|
17
17
|
coverage = "^7.6.3"
|
18
|
-
pydantic = "2.
|
18
|
+
pydantic = "2.5.3"
|
19
19
|
|
20
20
|
[build-system]
|
21
21
|
requires = ["poetry-core"]
|
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
|