Skip to content

Commit

Permalink
PKG: use a new way to generate wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
mrakitin committed Sep 19, 2023
1 parent 3c6463f commit c64314e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scripts/install-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,14 @@ sudo apt-get install -y \
# These packages are installed in the base environment but may be older
# versions. Explicitly upgrade them because they often create
# installation problems if out of date.
python -m pip install --upgrade pip setuptools wheel numpy
# python -m pip install --upgrade pip setuptools wheel numpy
python -m pip install --upgrade pip setuptools build numpy

# # Generate .whl file.
python setup.py sdist bdist_wheel
# python setup.py sdist bdist_wheel

# New style:
python -m build .

# Install this package and the packages listed in requirements.txt.
pip install -v .
Expand Down

0 comments on commit c64314e

Please sign in to comment.