diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2021-07-14 00:18:35 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2021-07-15 00:10:52 +1000 |
commit | 22fdb2130284ddea3ebe1d271d05d670546e788f (patch) | |
tree | a66dff52ad0374767cfc399ee2bf859ef3a6dbef | |
parent | 6430cd3e02d4ec4a8fc949754b434f745b1973e6 (diff) |
windows/appveyor: Update to VS 2017 and use Python 3.8 for build/test.
MicroPython implements some 3.5+ features, and this change helps to reduce
the need for some .exp files in the test suite.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
-rw-r--r-- | ports/windows/.appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/windows/.appveyor.yml b/ports/windows/.appveyor.yml index a4cd1f1e8..40fdff293 100644 --- a/ports/windows/.appveyor.yml +++ b/ports/windows/.appveyor.yml @@ -1,10 +1,10 @@ -image: Visual Studio 2013 +image: Visual Studio 2017 clone_depth: 1 skip_tags: true environment: # Python version used - MICROPY_CPYTHON3: c:/python34/python.exe + MICROPY_CPYTHON3: c:/python38/python.exe init: # Set build version number to commit to be travis-like |