_get_poly_degree throws error for scalars
in the 'minterpy.core.utils' script the function _get_poly_degree(exponents, lp_degree) throws an error when 'lp_norm()' returns a scalar.
Suggested fix: replace 'return ceil(norms.max())' with 'return ceil(np.max(norms))'