Skip to content

Commit

Permalink
chore: fix wheel steps in weekly tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBredehoft committed Aug 13, 2024
1 parent 2947e34 commit 1adacac
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions script/make_utils/pytest_pypi_cml.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ python -m pip install --upgrade pip
if ${USE_PIP_WHEEL}; then
# Delete the directory where the pypi wheel file will be created (if it already exists)
rm -rf dist

# Install dev dependencies for testing
poetry install --only dev

# Build the wheel file
poetry build -f wheel
Expand All @@ -61,8 +64,6 @@ if ${USE_PIP_WHEEL}; then
PYPI_WHEEL=$(find dist -type f -name "*.whl")
python -m pip install --extra-index-url https://pypi.zama.ai/cpu "${PYPI_WHEEL}"

# Install dev dependencies for testing
poetry install --only dev
else
if [ -z "${VERSION}" ]; then
python -m pip install concrete-ml[dev]
Expand Down

0 comments on commit 1adacac

Please sign in to comment.