From b39fb229b379cfa25569ec5588f13c9deb6db036 Mon Sep 17 00:00:00 2001 From: meejah Date: Thu, 28 Nov 2024 01:06:30 -0700 Subject: [PATCH] fix? --- .circleci/config.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6377ece0b..ecd184cb9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -257,14 +257,11 @@ jobs: # doesn't cost us anything extra and saves us effort next time. name: "(Maybe) Build Wheels" command: | - python -m pip install setuptools # Some Pythons for Windows do not come with setuptools - python setup.py update_version # Cheat to win a race about writing _version.py - if ((Test-Path .\wheelhouse) -and (Test-Path .\wheelhouse\*)) { echo "Found populated wheelhouse, skipping wheel building." } else { python -m pip install wheel - python -m pip wheel --wheel-dir $env:PIP_FIND_LINKS .[testenv] .[test] + python -m pip wheel --wheel-dir $env:PIP_FIND_LINKS .[testenv] .[test] .[build] } - "save_cache":