vtexpy 0.0.0b41__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.0b41 → vtexpy-0.0.0b42}/PKG-INFO +1 -1
  2. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/pyproject.toml +7 -7
  3. vtexpy-0.0.0b42/uv.lock +926 -0
  4. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/license_manager.py +1 -1
  5. vtexpy-0.0.0b41/uv.lock +0 -880
  6. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/.github/CODEOWNERS +0 -0
  7. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/.github/actions/setup-python/action.yaml +0 -0
  8. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/.github/workflows/publish.yaml +0 -0
  9. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/.gitignore +0 -0
  10. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/.pre-commit-config.yaml +0 -0
  11. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/CHANGELOG.md +0 -0
  12. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/CONTRIBUTING.md +0 -0
  13. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/LICENSE +0 -0
  14. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/Makefile +0 -0
  15. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/README.md +0 -0
  16. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/mise.local.toml.sample +0 -0
  17. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/mise.toml +0 -0
  18. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/tests/__init__.py +0 -0
  19. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/tests/base.py +0 -0
  20. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/tests/conftest.py +0 -0
  21. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/tests/integration.py +0 -0
  22. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/tests/unit.py +0 -0
  23. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/tests/vtex/__init__.py +0 -0
  24. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/tests/vtex/api/__init__.py +0 -0
  25. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/tests/vtex/test_config.py +0 -0
  26. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/__init__.py +0 -0
  27. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/__init__.py +0 -0
  28. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/base.py +0 -0
  29. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/catalog.py +0 -0
  30. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/checkout.py +0 -0
  31. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/custom.py +0 -0
  32. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/logistics.py +0 -0
  33. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/master_data.py +0 -0
  34. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/orders.py +0 -0
  35. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/payments_gateway.py +0 -0
  36. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/pricing.py +0 -0
  37. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/promotions_and_taxes.py +0 -0
  38. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/search.py +0 -0
  39. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/types/__init__.py +0 -0
  40. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/types/catalog.py +0 -0
  41. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/types/generic.py +0 -0
  42. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_api/types/license_manager.py +0 -0
  43. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_config.py +0 -0
  44. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_constants.py +0 -0
  45. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_dto.py +0 -0
  46. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_exceptions.py +0 -0
  47. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_logging.py +0 -0
  48. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_sentinels.py +0 -0
  49. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_types.py +0 -0
  50. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_utils.py +0 -0
  51. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/_vtex.py +0 -0
  52. {vtexpy-0.0.0b41 → vtexpy-0.0.0b42}/vtex/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vtexpy
3
- Version: 0.0.0b41
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
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "vtexpy"
3
- version = "0.0.0b41"
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,<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'",
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]