Dear Professor Dauphine,
I could not figure that one out, but had help from the Wolfram's technical support, which I would like to share with you. If you change the respective line in your code to:
mesh = ToElementMesh[bmesh, MaxCellMeasure -> 0.05, MeshQualityGoal -> 0];
the program will run without error message in MMA11.3.
So:
ClearAll["Global`*"]
Needs["NDSolve`FEM`"]
parisradius = 0.3;
parisdiffusionvalue = 150;
carto = DiscretizeGraphics[
CountryData["France", {"Polygon", "Mercator"}] /.
Polygon[x : {{{_, _} ..} ..}] :> Polygon /@ x];
paris = First@
GeoGridPosition[
GeoPosition[
CityData[Entity["City", {"Paris", "IleDeFrance", "France"}]][
"Coordinates"]], "Mercator"];
bmesh = ToBoundaryMesh[carto, AccuracyGoal -> 1,
"IncludePoints" -> CirclePoints[paris, parisradius, 50]];
mesh = ToElementMesh[bmesh, MaxCellMeasure -> 0.05,
MeshQualityGoal -> 0];
mesh["Wireframe"];
op = \!\(
\*SubscriptBox[\(\[PartialD]\), \(t\)]\(u[t, x, y]\)\) - \!\(
\*SubsuperscriptBox[\(\[Del]\), \({x, y}\), \(2\)]\(u[t, x, y]\)\) +
1.2*u[t, x, y] - 20;
usol = NDSolveValue[{op == 1,
DirichletCondition[u[t, x, y] == 0,
Norm[{x, y} - paris] > .6],
DirichletCondition[u[t, x, y] == parisdiffusionvalue,
Norm[{x, y} - paris] < .6], u[0, x, y] == 100},
u, {t, 0, 20}, {x, y} \[Element] mesh]
frames = Table[
Plot3D[usol[t, x, y], {x, y} \[Element] usol["ElementMesh"],
PlotRange -> {0, 160}], {t, 0, 20, 2}];
ListAnimate[frames, SaveDefinitions -> True]
frames = Table[
ContourPlot[
usol[t, x, y], {x, y} \[Element] usol["ElementMesh"],
PlotRange -> {0, 160}], {t, 0, 20, 2}];
ListAnimate[frames, SaveDefinitions -> True]
should do the trick.

As a side note, the technical support was outstanding. I used the chat interface and was directed to developers who suggested a fix very quickly.
Best wishes from Aberdeen,
Marco