File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 23
23
uses : coactions/dynamic-matrix@v1
24
24
with :
25
25
min_python : " 3.9"
26
- max_python : " 3.11 "
26
+ max_python : " 3.12 "
27
27
other_names : |
28
28
lint
29
29
docs
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ classifiers = [
27
27
" Programming Language :: Python :: 3.9" ,
28
28
" Programming Language :: Python :: 3.10" ,
29
29
" Programming Language :: Python :: 3.11" ,
30
+ " Programming Language :: Python :: 3.12" ,
30
31
" Programming Language :: Python" ,
31
32
" Topic :: System :: Systems Administration" ,
32
33
" Topic :: Software Development :: Bug Tracking" ,
@@ -119,7 +120,12 @@ disable = [
119
120
120
121
[tool .pytest .ini_options ]
121
122
# ensure we treat warnings as error
122
- filterwarnings = [" error" ]
123
+ filterwarnings = [
124
+ " error" ,
125
+ # py312 ansible-core
126
+ # https://github.com/ansible/ansible/issues/81906
127
+ " ignore:'importlib.abc.TraversableResources' is deprecated and slated for removal in Python 3.14:DeprecationWarning" ,
128
+ ]
123
129
testpaths = [" test" ]
124
130
125
131
[tool .ruff ]
You can’t perform that action at this time.
0 commit comments