From: Bob Halley Date: Sun, 28 Jun 2026 01:00:10 +0000 (-0700) Subject: Fix uv globbing. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa5e8ccc1df870b70ec514865f9d5e703917a234;p=thirdparty%2Fdnspython.git Fix uv globbing. Source kit builds were not longer including the tests, examples, and utilities because the glob stopped matching. Previously we were using an "absolute" syntax starting with "/" but this doesn't seem to work now. Also, added tests/tsigkeys/*.key to the glob so they are included. --- diff --git a/pyproject.toml b/pyproject.toml index e031d88c..d99431c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,22 +59,23 @@ issues = "https://github.com/rthalley/dnspython/issues" module-name = "dns" module-root = "" source-include = [ - "/dns/*.py", - "/dns/**/*.py", - "/dns/py.typed", - "/examples/*.txt", - "/examples/*.py", - "/tests/*.txt", - "/tests/*.py", - "/tests/*.good", - "/tests/example", - "/tests/query", - "/tests/*.pickle", - "/tests/*.text", - "/tests/*.generic", - "/tests/tls/*.crt", - "/tests/tls/*.pem", - "/util/**", + "dns/*.py", + "dns/**/*.py", + "dns/py.typed", + "examples/*.txt", + "examples/*.py", + "tests/*.txt", + "tests/*.py", + "tests/*.good", + "tests/example", + "tests/query", + "tests/*.pickle", + "tests/*.text", + "tests/*.generic", + "tests/tls/*.crt", + "tests/tls/*.pem", + "tests/tsigkeys/*.key", + "util/**", ] source-exclude = [ ".pytest_cache",