Skip to content

Commit 0a6554e

Browse files
committed
appveyor: upgrade setuptools before build (should fix UNKNOWN package name)
1 parent d99d9ae commit 0a6554e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

appveyor.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@ environment:
1717
- PYTHON: "C:\\Python310-x64"
1818

1919
install:
20+
# Newer setuptools is needed for proper support of pyproject.toml
21+
- "%PYTHON%\\python.exe -m pip install setuptools --upgrade"
2022
# We need wheel installed to build wheels
21-
- "%PYTHON%\\python.exe -m pip install wheel build setuptools setuptools_scm"
23+
- "%PYTHON%\\python.exe -m pip install wheel --upgrade"
24+
- "%PYTHON%\\python.exe -m pip install build setuptools_scm"
2225
- "%PYTHON%\\python.exe -m pip install pytest numpy pandas"
2326

2427
build: off

0 commit comments

Comments
 (0)