Skip to content

Commit 1d5354a

Browse files
committed
ignore warning for 3.9
this was only fixed for python>=3.10 in pymc-devs/pytensor#997
1 parent e958241 commit 1d5354a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ minversion = "6.0"
8383
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
8484
xfail_strict = true
8585
filterwarnings = [
86-
"error",
86+
"error",
87+
'ignore:Use shutil.which instead of find_executable:DeprecationWarning', # pytensor in py3.9
8788
]
8889
log_cli_level = "INFO"
8990
testpaths = [

0 commit comments

Comments
 (0)