Skip to content

Commit

Permalink
Fix package installation for CI (#521)
Browse files Browse the repository at this point in the history
Co-authored-by: Awni Hannun <[email protected]>
  • Loading branch information
danilopeixoto and awni authored Jan 25, 2024
1 parent f27ec5e commit 624065c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ jobs:
pip install pybind11-stubgen
pip install numpy
pip install twine
# TODO: Update build system to switch away from setup.py develop
- run:
name: Install Python package
command: |
Expand All @@ -144,7 +145,7 @@ jobs:
DEVELOPER_DIR=$(developer_dir_macos_<< parameters.macos_version >>) \
PYPI_RELEASE=1 \
CMAKE_BUILD_PARALLEL_LEVEL="" \
python setup.py install
python setup.py develop
- run:
name: Generate package stubs
command: |
Expand Down Expand Up @@ -196,7 +197,7 @@ jobs:
DEVELOPER_DIR=$(developer_dir_macos_<< parameters.macos_version >>) \
DEV_RELEASE=1 \
CMAKE_BUILD_PARALLEL_LEVEL="" \
python setup.py install
python setup.py develop
- run:
name: Generate package stubs
command: |
Expand Down Expand Up @@ -247,7 +248,7 @@ jobs:
conda activate runner-env
DEVELOPER_DIR=$(developer_dir_macos_<< parameters.macos_version >>) \
CMAKE_BUILD_PARALLEL_LEVEL="" \
python setup.py install
python setup.py develop
- run:
name: Generate package stubs
command: |
Expand Down

0 comments on commit 624065c

Please sign in to comment.