Skip to content

Commit 0db0c16

Browse files
authored
Temporarily disable mgmt enforcement of py.typed (Azure#24513)
I missed a _bunch_ of management packages in my py.typed update. I need to fix that. Until then, I'd rather not turn every single build red. Timeline is tomorrow.
1 parent a7eedb5 commit 0db0c16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/tox/verify_sdist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def verify_sdist_pytyped(
148148
logging.info("Failed to verify sdist for package [%s]", pkg_name)
149149
exit(1)
150150

151-
if pkg_name not in EXCLUDED_PYTYPE_PACKAGES and "-nspkg" not in pkg_name:
151+
if pkg_name not in EXCLUDED_PYTYPE_PACKAGES and "-nspkg" not in pkg_name and "-mgmt" not in pkg_name:
152152
logging.info("Verifying presence of py.typed: [%s]", pkg_name)
153153
if verify_sdist_pytyped(pkg_dir, namespace, package_data, include_package_data):
154154
logging.info("Py.typed setup.py kwargs are set properly: [%s]", pkg_name)

0 commit comments

Comments
 (0)