vtexpy 0.0.0b40__tar.gz → 0.0.0b42__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.

Potentially problematic release.


This version of vtexpy might be problematic. Click here for more details.

Files changed (52) hide show
  1. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/.pre-commit-config.yaml +2 -2
  2. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/PKG-INFO +2 -2
  3. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/pyproject.toml +7 -7
  4. vtexpy-0.0.0b42/uv.lock +926 -0
  5. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/license_manager.py +1 -1
  6. vtexpy-0.0.0b40/uv.lock +0 -866
  7. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/.github/CODEOWNERS +0 -0
  8. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/.github/actions/setup-python/action.yaml +0 -0
  9. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/.github/workflows/publish.yaml +0 -0
  10. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/.gitignore +0 -0
  11. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/CHANGELOG.md +0 -0
  12. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/CONTRIBUTING.md +0 -0
  13. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/LICENSE +0 -0
  14. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/Makefile +0 -0
  15. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/README.md +0 -0
  16. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/mise.local.toml.sample +0 -0
  17. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/mise.toml +0 -0
  18. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/tests/__init__.py +0 -0
  19. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/tests/base.py +0 -0
  20. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/tests/conftest.py +0 -0
  21. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/tests/integration.py +0 -0
  22. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/tests/unit.py +0 -0
  23. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/tests/vtex/__init__.py +0 -0
  24. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/tests/vtex/api/__init__.py +0 -0
  25. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/tests/vtex/test_config.py +0 -0
  26. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/__init__.py +0 -0
  27. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/__init__.py +0 -0
  28. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/base.py +0 -0
  29. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/catalog.py +0 -0
  30. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/checkout.py +0 -0
  31. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/custom.py +0 -0
  32. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/logistics.py +0 -0
  33. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/master_data.py +0 -0
  34. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/orders.py +0 -0
  35. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/payments_gateway.py +0 -0
  36. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/pricing.py +0 -0
  37. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/promotions_and_taxes.py +0 -0
  38. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/search.py +0 -0
  39. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/types/__init__.py +0 -0
  40. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/types/catalog.py +0 -0
  41. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/types/generic.py +0 -0
  42. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_api/types/license_manager.py +0 -0
  43. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_config.py +0 -0
  44. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_constants.py +0 -0
  45. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_dto.py +0 -0
  46. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_exceptions.py +0 -0
  47. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_logging.py +0 -0
  48. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_sentinels.py +0 -0
  49. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_types.py +0 -0
  50. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_utils.py +0 -0
  51. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/_vtex.py +0 -0
  52. {vtexpy-0.0.0b40 → vtexpy-0.0.0b42}/vtex/py.typed +0 -0
@@ -11,11 +11,11 @@ repos:
11
11
  - id: mixed-line-ending
12
12
  - id: trailing-whitespace
13
13
  - repo: https://github.com/astral-sh/uv-pre-commit
14
- rev: 0.6.11
14
+ rev: 0.7.13
15
15
  hooks:
16
16
  - id: uv-lock
17
17
  - repo: https://github.com/astral-sh/ruff-pre-commit
18
- rev: v0.11.2
18
+ rev: v0.12.0
19
19
  hooks:
20
20
  - id: ruff
21
21
  args: ["--fix"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vtexpy
3
- Version: 0.0.0b40
3
+ Version: 0.0.0b42
4
4
  Summary: Unofficial VTEX API's Python SDK
5
5
  Project-URL: homepage, https://github.com/lvieirajr/vtex-python
6
6
  Project-URL: repository, https://github.com/lvieirajr/vtex-python
@@ -24,7 +24,7 @@ Classifier: Topic :: Software Development :: Libraries
24
24
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
25
  Classifier: Typing :: Typed
26
26
  Requires-Python: <3.14,>=3.10
27
- Requires-Dist: cachetools<6.0,>=5.0
27
+ Requires-Dist: cachetools<7.0,>=5.0
28
28
  Requires-Dist: httpx<1.0,>=0.17
29
29
  Requires-Dist: pydantic<3.0,>=2.0
30
30
  Requires-Dist: python-dateutil<3.0,>=2.9
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "vtexpy"
3
- version = "0.0.0b40"
3
+ version = "0.0.0b42"
4
4
  description = "Unofficial VTEX API's Python SDK"
5
5
  readme = "README.md"
6
6
  license = "Apache-2.0"
@@ -28,12 +28,12 @@ classifiers = [
28
28
  ]
29
29
  requires-python = ">=3.10,<3.14"
30
30
  dependencies = [
31
- "cachetools (>=5.0,<6.0)",
32
- "httpx (>=0.17,<1.0)",
33
- "pydantic (>=2.0,<3.0)",
34
- "python-dateutil (>=2.9,<3.0)",
35
- "tenacity (>=8.0,<10.0)",
36
- "typing-extensions (>=3.10,<5.0); python_version < '3.12'",
31
+ "cachetools>=5.0,<7.0",
32
+ "httpx>=0.17,<1.0",
33
+ "pydantic>=2.0,<3.0",
34
+ "python-dateutil>=2.9,<3.0",
35
+ "tenacity>=8.0,<10.0",
36
+ "typing-extensions>=3.10,<5.0; python_version < '3.12'",
37
37
  ]
38
38
 
39
39
  [dependency-groups]