appveyor / ci

AppVeyor community support repository
https://www.appveyor.com
344 stars 64 forks source link

Miniconda version - Python 3.8+? #3783

Closed c-f-h closed 2 years ago

c-f-h commented 2 years ago

Hi,

I'm wondering why the latest preinstalled version for miniconda seems to be that with Python 3.7 and no later Python versions are supported. For context, I use a path of the form

MINICONDA: "C:\\Miniconda37-x64"

for my CI script, but changing that to Miniconda38 does not work.

duncanmmacleod commented 2 years ago

@c-f-h, you can get around that by manually specifying a newer build image, e.g.

image: Visual Studio 2022
environment:
  global:
    MINICONDA: C:\Miniconda38-x64

But it would be better to have this available by default.

c-f-h commented 2 years ago

Thanks, that did the trick! I also realized that I can use the APPVEYOR_BUILD_WORKER_IMAGE variable to change this per build.