Skip to content

Commit 6fbeb41

Browse files
committed
Update build.sh
Move conda commands to be run before installing the rest of dependencies
1 parent b6e20c0 commit 6fbeb41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ mkdir -p build dist
77
echo "Cleaning up old versions..."
88
rm -rf ./build/* ./dist/* ./Example_Python_Package.egg-info
99
echo "Building package for distribution..."
10-
./venv/bin/python ./setup.py sdist bdist_wheel
1110
CONDA_BASE=$(conda info --base)
1211
source "${CONDA_BASE}/etc/profile.d/conda.sh"
1312
conda create -n coast-toolbox python=3.10
1413
conda activate coast-toolbox
1514
conda install conda-forge::hdf5
15+
./venv/bin/python ./setup.py sdist bdist_wheel
1616

1717
echo "Done!"

0 commit comments

Comments
 (0)