From 3dd0960cd9a91750551d87e9fcaffd33b9f55647 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Thu, 26 Oct 2023 23:15:02 -0400 Subject: [PATCH] See what happens when not running setup.py build_ext --- .github/workflows/CI.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index f088915..4a56f47 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -46,10 +46,10 @@ jobs: - name: Install package run: | python -m pip install -vvv . - # Importing the Cython inside the source tree is broken unless the - # compiled products are next to the source code, symlinked or - # otherwise. - python setup.py build_ext -i + # # Importing the Cython inside the source tree is broken unless the + # # compiled products are next to the source code, symlinked or + # # otherwise. + # python setup.py build_ext -i PACKAGE_INSTALL_DIR=$(python -c 'import pyquante2 as _; print(_.__path__[0])') find $PACKAGE_INSTALL_DIR -type f | sort - name: Print Python environment