FutureWarning: ‘normalize’ was deprecated in version 1.0 and will be removed in 1.2.
などの対策
# import warnings filter
from warnings import simplefilter
# ignore all future warnings
simplefilter(action='ignore', category=FutureWarning)
Just another WordPress site
FutureWarning: ‘normalize’ was deprecated in version 1.0 and will be removed in 1.2.
などの対策
# import warnings filter
from warnings import simplefilter
# ignore all future warnings
simplefilter(action='ignore', category=FutureWarning)