[copy][ninja] Move copy_sky_engine_sources.py to Python3

Python2 doesn't support nanosecond timestamps, but ninja does for
checking dirtiness of builds. Because python2 is being used to copy the
sources from the dart dir to the output dir in Fuchsia builds, doing a
second build immediately after the first one results in the build still
being dirty and the steps repeated.

In order to fix this, simply update this script to Python 3.x which
handles nanoseconds in mtimes.

Bug: 36581
Change-Id: I77cad2ec6b5b0f1d290bc1aeecf259462884338a
diff --git a/runtime/sky_engine/copy_sky_engine_sources.py b/runtime/sky_engine/copy_sky_engine_sources.py
index d303477..e0baebf 100755
--- a/runtime/sky_engine/copy_sky_engine_sources.py
+++ b/runtime/sky_engine/copy_sky_engine_sources.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # Copyright 2018 The Fuchsia Authors. All rights reserved.
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.