Commit b1d8285db3317aaebd9bbc4e90668c3696088b13

Authored by Henry Schreiner
Committed by GitHub
1 parent 706b14fb

Fixing appveyor by using Python 3 (#425)

Showing 1 changed file with 5 additions and 2 deletions
.appveyor.yml
@@ -6,9 +6,12 @@ branches: @@ -6,9 +6,12 @@ branches:
6 6
7 install: 7 install:
8 - git submodule update --init --recursive 8 - git submodule update --init --recursive
9 - - set PATH=C:\Python36;%PATH% 9 + - py -3 --version
  10 + - set PATH=C:\Python38-x64;C:\Python38-x64\Scripts;%PATH%
10 - cmake --version 11 - cmake --version
11 - - pip install conan 12 + - python --version
  13 + - python -m pip --version
  14 + - python -m pip install conan
12 - conan user 15 - conan user
13 - conan --version 16 - conan --version
14 17