pytest-accept 0.2.4__tar.gz → 0.3.0__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 (24) hide show
  1. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/PKG-INFO +2 -2
  2. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pyproject.toml +2 -2
  3. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/common.py +2 -1
  4. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/LICENSE +0 -0
  5. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/README.md +0 -0
  6. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/__init__.py +0 -0
  7. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/assert_plugin.py +0 -0
  8. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/doctest_plugin.py +0 -0
  9. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/__init__.py +0 -0
  10. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_api_compatibility.py +0 -0
  11. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_assert_plugin.py +0 -0
  12. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_assertion_filtering.py +0 -0
  13. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_atomic_write_verification.py +0 -0
  14. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_complex_assertion_warning.py +0 -0
  15. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_concurrent_execution.py +0 -0
  16. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_doctest.py +0 -0
  17. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_doctest_formatting.py +0 -0
  18. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_file_change_detection.py +0 -0
  19. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_integration.py +0 -0
  20. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_issue_296.py +0 -0
  21. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_multiple_doctest_failures.py +0 -0
  22. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_no_xdist.py +0 -0
  23. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_parametrized.py +0 -0
  24. {pytest_accept-0.2.4 → pytest_accept-0.3.0}/pytest_accept/tests/test_unified_integration.py +0 -0
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-accept
3
- Version: 0.2.4
3
+ Version: 0.3.0
4
4
  Author: Maximilian Roos
5
5
  Author-email: Maximilian Roos <m@maxroos.com>
6
6
  License-Expression: Apache-2.0
7
7
  License-File: LICENSE
8
8
  Requires-Dist: astor>=0.8.1
9
9
  Requires-Dist: pytest>=7
10
- Requires-Python: >=3.9, <4
10
+ Requires-Python: >=3.10, <4
11
11
  Project-URL: homepage, https://github.com/max-sixty/pytest-accept
12
12
  Project-URL: repository, https://github.com/max-sixty/pytest-accept
13
13
  Description-Content-Type: text/markdown
@@ -1,11 +1,11 @@
1
1
  [project]
2
2
  authors = [{ name = "Maximilian Roos", email = "m@maxroos.com" }]
3
3
  dependencies = ["astor>=0.8.1", "pytest>=7"]
4
- requires-python = ">=3.9, <4"
4
+ requires-python = ">=3.10, <4"
5
5
  license = "Apache-2.0"
6
6
  license-files = ["LICENSE"]
7
7
  readme = "README.md"
8
- version = "0.2.4"
8
+ version = "0.3.0"
9
9
  name = "pytest-accept"
10
10
  urls = { homepage = "https://github.com/max-sixty/pytest-accept", repository = "https://github.com/max-sixty/pytest-accept" }
11
11
 
@@ -4,8 +4,9 @@ from __future__ import annotations
4
4
 
5
5
  import os
6
6
  import tempfile
7
+ from collections.abc import Callable
7
8
  from pathlib import Path
8
- from typing import Any, Callable
9
+ from typing import Any
9
10
 
10
11
  from . import file_hashes_key
11
12
 
File without changes
File without changes