Monzo-API 1.2.4__tar.gz → 1.2.5__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.
Files changed (32) hide show
  1. {monzo_api-1.2.4 → monzo_api-1.2.5/Monzo_API.egg-info}/PKG-INFO +1 -1
  2. {monzo_api-1.2.4/Monzo_API.egg-info → monzo_api-1.2.5}/PKG-INFO +1 -1
  3. {monzo_api-1.2.4 → monzo_api-1.2.5}/pyproject.toml +12 -1
  4. {monzo_api-1.2.4 → monzo_api-1.2.5}/LICENSE +0 -0
  5. {monzo_api-1.2.4 → monzo_api-1.2.5}/Monzo_API.egg-info/SOURCES.txt +0 -0
  6. {monzo_api-1.2.4 → monzo_api-1.2.5}/Monzo_API.egg-info/dependency_links.txt +0 -0
  7. {monzo_api-1.2.4 → monzo_api-1.2.5}/Monzo_API.egg-info/top_level.txt +0 -0
  8. {monzo_api-1.2.4 → monzo_api-1.2.5}/README.rst +0 -0
  9. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/__init__.py +0 -0
  10. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/authentication.py +0 -0
  11. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/endpoints/__init__.py +0 -0
  12. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/endpoints/account.py +0 -0
  13. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/endpoints/attachment.py +0 -0
  14. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/endpoints/balance.py +0 -0
  15. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/endpoints/feed_item.py +0 -0
  16. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/endpoints/monzo.py +0 -0
  17. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/endpoints/pot.py +0 -0
  18. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/endpoints/receipt.py +0 -0
  19. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/endpoints/transaction.py +0 -0
  20. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/endpoints/webhooks.py +0 -0
  21. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/endpoints/whoami.py +0 -0
  22. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/exceptions.py +0 -0
  23. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/handlers/__init__.py +0 -0
  24. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/handlers/filesystem.py +0 -0
  25. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/handlers/storage.py +0 -0
  26. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/helpers.py +0 -0
  27. {monzo_api-1.2.4 → monzo_api-1.2.5}/monzo/httpio.py +0 -0
  28. {monzo_api-1.2.4 → monzo_api-1.2.5}/setup.cfg +0 -0
  29. {monzo_api-1.2.4 → monzo_api-1.2.5}/tests/test_authentication.py +0 -0
  30. {monzo_api-1.2.4 → monzo_api-1.2.5}/tests/test_endpoints.py +0 -0
  31. {monzo_api-1.2.4 → monzo_api-1.2.5}/tests/test_httpio_errors.py +0 -0
  32. {monzo_api-1.2.4 → monzo_api-1.2.5}/tests/test_payload.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Monzo-API
3
- Version: 1.2.4
3
+ Version: 1.2.5
4
4
  Summary: Package to interact with the API provided by Monzo bank
5
5
  Author-email: Peter McDonald <git@petermcdonald.co.uk>
6
6
  License: MIT License
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Monzo-API
3
- Version: 1.2.4
3
+ Version: 1.2.5
4
4
  Summary: Package to interact with the API provided by Monzo bank
5
5
  Author-email: Peter McDonald <git@petermcdonald.co.uk>
6
6
  License: MIT License
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "Monzo-API"
3
- version = "1.2.4"
3
+ version = "1.2.5"
4
4
  authors = [{ name = "Peter McDonald", email = "git@petermcdonald.co.uk"}]
5
5
  description = "Package to interact with the API provided by Monzo bank"
6
6
  keywords = ["monzo", "bank", "api"]
@@ -28,7 +28,9 @@ documentation = "https://monzo-api.readthedocs.io"
28
28
 
29
29
  [dependency-groups]
30
30
  dev = [
31
+ "cosmic-ray>=8.4.6",
31
32
  "idna>=3.16", # To resolve security vulnerabilities in dependencies pip-audit
33
+ "pip-audit>=2.9.0",
32
34
  "pygments>=2.20.0", # To resolve security vulnerabilities in dependencies pytest sphinx
33
35
  "pytest>=9.0.3",
34
36
  "pytest-cov>=7.1.0",
@@ -46,3 +48,12 @@ addopts = "--cov=monzo --cov-report term-missing --cov-report xml:coverage.xml"
46
48
 
47
49
  [tool.ruff]
48
50
  line-length = 120
51
+
52
+ [cosmic-ray]
53
+ module-path = "monzo"
54
+ timeout = 10.0
55
+ excluded-modules = []
56
+ test-command = "uv run pytest"
57
+
58
+ [cosmic-ray.distributor]
59
+ name = "local"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes