Skip to content

Commit

Permalink
MNT: move wheels generation step to the beginning
Browse files Browse the repository at this point in the history
  • Loading branch information
mrakitin committed Sep 15, 2023
1 parent 57b3e35 commit 36ea6a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ target/
#pycharm
.idea/*

.vscode/*

#Ipython Notebook
.ipynb_checkpoints
8 changes: 5 additions & 3 deletions scripts/install-deps.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/bash

set -vxeuo pipefail

sudo apt-get update -y
sudo apt-get install -y \
gfortran \
openmpi-bin \
Expand All @@ -15,12 +17,12 @@ sudo apt-get install -y \
# installation problems if out of date.
python -m pip install --upgrade pip "setuptools<=65.5.*" numpy

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

# Generate .whl file.
python setup.py bdist_wheel

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

# Install extra requirements for running tests and building docs.
pip install -r requirements-dev.txt

Expand Down

0 comments on commit 36ea6a8

Please sign in to comment.