The summary function got moved to Arviz. You can still use it from there - see the code below.
import pymc3 as pm
import arviz as az
with pm.Model() as model:
x = pm.Normal('x')
y = pm.Deterministic('y', x**2)
trace = pm.sample()
az.summary(trace)