Skip to content

Commit

Permalink
Ignore wheel warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bnavigator authored Sep 16, 2024
1 parent 4992060 commit b565482
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,8 @@ filterwarnings= [
# Ignore our own deprecation warnings.
"ignore:.*:deprecation.DeprecatedWarning",
# Ignore warning raised when importing setuptools.command.develop.
"ignore:pkg_resources is deprecated as an API:DeprecationWarning"
"ignore:pkg_resources is deprecated as an API:DeprecationWarning",
# bdist_wheel moved from wheel 0.44+ to setuptools 0.70.1+.
# We already handle it but wheel 0.44 could still emit the warning with an older setuptools.
"ignore:The 'wheel' package is no longer the canonical location of the 'bdist_wheel' command:DeprecationWarning",
]

0 comments on commit b565482

Please sign in to comment.