I'm connecting to Portal via the GIS object.
from arcgis.gis import GIS
portal = GIS(<my portal>)
print(portal.version) # gives [10,3]
But my portal is at version 11.1. That's what the Portal Admin URL shows.
Why is there a mismatch? How do I fix this?

