python-sphinx-autodoc-typeh.../python-sphinx-autodoc-typehints-system-object.inv.patch
Dirk Mueller 66a6ca619d - update to 2.4.0:
* Drop 3.9 support
  * Add 3.13 support
- update to 2.3.0:
  * Add module name rewrite configuration option
- update to 2.2.3:
  * Fix mypy errors due to unneeded type ignores
  * Fix rendering when docstring starst with a directive

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sphinx-autodoc-typehints?expand=0&rev=49
2024-09-08 13:21:35 +00:00

28 lines
1.0 KiB
Diff

---
tests/conftest.py | 13 ++-----------
1 file changed, 2 insertions(+), 11 deletions(-)
Index: sphinx_autodoc_typehints-1.25.2/tests/conftest.py
===================================================================
--- sphinx_autodoc_typehints-1.25.2.orig/tests/conftest.py
+++ sphinx_autodoc_typehints-1.25.2/tests/conftest.py
@@ -19,16 +19,8 @@ collect_ignore = ["roots"]
@pytest.fixture(scope="session")
def inv(pytestconfig: Config) -> Inventory:
- cache_path = f"python{sys.version_info.major}.{sys.version_info.minor}/objects.inv"
- assert pytestconfig.cache is not None
- inv_dict = pytestconfig.cache.get(cache_path, None)
- if inv_dict is not None:
- return Inventory(inv_dict)
-
- url = f"https://docs.python.org/{sys.version_info.major}.{sys.version_info.minor}/objects.inv"
- inv = Inventory(url=url)
- pytestconfig.cache.set(cache_path, inv.json_dict())
- return inv
+ inv_dict = '/usr/share/doc/packages/python@PYTHON_VERSION@/html/objects.inv'
+ return Inventory(inv_dict)
@pytest.fixture(autouse=True)