Skip to content

Commit

Permalink
Fixed wheel generation
Browse files Browse the repository at this point in the history
  • Loading branch information
lajerm authored and mrakitin committed Aug 14, 2024
1 parent b1ad43f commit 4a6f529
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# List required packages in this file, one per line.
numpy
numpy<2
scipy
sympy
matplotlib
Expand Down
8 changes: 6 additions & 2 deletions scripts/install-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ python -VV

python -m pip install --upgrade pip setuptools wheel numpy

# # Generate .whl file.
python setup.py sdist bdist_wheel
# Generate .whl file.
if [ "${platform}" == "Linux" ]; then
python setup.py sdist bdist_wheel --plat-name=manylinux2014_x86_64
else
python setup.py sdist bdist_wheel
fi
ls -la dist/

# Install this package and the packages listed in requirements.txt.
Expand Down

0 comments on commit 4a6f529

Please sign in to comment.