From 5a9728df02fd1118e8908cc77915a65505703994 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Tue, 21 Jan 2020 09:40:24 +0200 Subject: Fix Appveyor build failures python setup.py bdist_wheel fails on Python 3.5 with AttributeError: '_NamespacePath' object has no attribute 'sort' somewhere in pkg_resources. This was fixed in other projects by upgrading setuptools, so let's try that here too. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index d643125..795f575 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -29,7 +29,7 @@ install: - pip install -e . build_script: - - pip install wheel + - pip install -U setuptools wheel - python -W ignore setup.py -q bdist_wheel test_script: -- cgit v1.2.1