From 6738127ea206aa12e3b5fac44b5e6e5bd65461da Mon Sep 17 00:00:00 2001 From: Taher Chegini Date: Fri, 5 Jul 2024 14:37:20 -0400 Subject: [PATCH] MNT: Bump hyriver version libs. [skip ci] --- pyproject.toml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5f7bf2b..fd17210 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ dynamic = [ "version", ] dependencies = [ - "async-retriever<0.17,>=0.16", + "async-retriever<0.18,>=0.17", "cytoolz", "defusedxml", "joblib", @@ -201,15 +201,16 @@ skip = "__pycache__,_build,.mypy_cache,.git,./htmlcov,.nox,**/us_abbrs.py,cache" ignore-words-list = "gage,gages,paramss,trough" [tool.pytest.ini_options] -addopts = "--ignore=noxfile.py -n=auto -v --durations=5" +addopts = "--ignore=noxfile.py --doctest-modules -n=auto -v --durations=5" doctest_optionflags = 'NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL NUMBER' filterwarnings = [ "ignore:.*distutils.*", "ignore:.*--rsyncdir command line argument.*", "ignore:.*numpy.ndarray size changed.*", "ignore:.*'cgi' is deprecated.*", - "ignore:.*Calling float on a single element.*", + "ignore:.*Ensure you extract a single element.*", "ignore:.*Shapely GEOS version.*", + "ignore:.*Deprecated in Pydantic V2.0.*", ] testpaths = [ "tests", @@ -222,15 +223,18 @@ exclude_lines = [ ] ignore_errors = true -[tool.coverage.run] -branch = true +[tool.coverage.paths] +source = [ "src", "*/site-packages" ] omit = [ "**/__init__.py", "**/print_versions.py", ] + +[tool.coverage.run] +branch = true parallel = true source = [ - 'src/pygeoogc', + "pygeoogc", ] [tool.pyright]