From a8d5ef1f7c6aa589484f2fa0054e298537c1ac56 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Wed, 20 Sep 2023 10:52:12 -0500 Subject: [PATCH] ci: Remove error on warnings for build * Remove PYTHONWARNINGS filter to avoid having builds fail for reasons outside of user control. --- .github/workflows/publish-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index eb956eb506..1b72187f2d 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -46,7 +46,7 @@ jobs: - name: Build a wheel and a sdist run: | - PYTHONWARNINGS=error,default::DeprecationWarning python -m build . + python -m build . - name: Verify untagged commits have dev versions if: "!startsWith(github.ref, 'refs/tags/')"