From e4c62ecadb38e02b9c3d41bfc6200a5a6e9bae87 Mon Sep 17 00:00:00 2001 From: Adina Wagner Date: Mon, 9 Oct 2023 09:48:59 +0200 Subject: [PATCH] Remove outdated comment on Appveyor bug it was fixed in https://github.com/appveyor/ci/issues/3580 --- .appveyor.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 706375f2..157bfc9e 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -155,9 +155,7 @@ install: # Missing system software - sh: "[ -n \"$INSTALL_SYSPKGS\" ] && ( [ \"x${APPVEYOR_BUILD_WORKER_IMAGE}\" = \"xmacOS\" ] && brew install -q ${INSTALL_SYSPKGS} || { sudo apt-get update -y && sudo apt-get install --no-install-recommends -y ${INSTALL_SYSPKGS}; } ) || true" # If a particular Python version is requested, use env setup (using the - # appveyor provided environments/installation). Note, these are broken - # on the ubuntu images - # https://help.appveyor.com/discussions/problems/28217-appveyor-ubunu-image-with-python3-lzma-module + # appveyor provided environments/installation). # Otherwise create a venv using the default Python 3, to enable uniform # use of python/pip executables below - sh: "[ \"x$PY\" != x ] && . ${HOME}/venv${PY}/bin/activate || python3 -m venv ${HOME}/dlvenv && . ${HOME}/dlvenv/bin/activate; ln -s \"$VIRTUAL_ENV\" \"${HOME}/VENV\""