forked from OpenChemistry/stempy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request OpenChemistry#322 from OpenChemistry/wheel-fixes
Wheel build fixes
- Loading branch information
Showing
7 changed files
with
39 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env bash | ||
set -ev | ||
|
||
choco install ninja | ||
git clone --recursive -b 3.3.9 --depth 1 https://gitlab.com/libeigen/eigen /c/eigen | ||
mkdir /c/build | ||
cd /c/build | ||
cmake -GNinja /c/eigen | ||
ninja install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env bash | ||
set -ev | ||
|
||
VERSION="1.14.4" | ||
PATCH_LABEL="3" | ||
VERSION_PATH="hdf5_$VERSION.$PATCH_LABEL" | ||
NAME="hdf5-$VERSION-$PATCH_LABEL" | ||
TARBALL="$NAME.tar.gz" | ||
wget https://github.com/HDFGroup/hdf5/releases/download/$VERSION_PATH/$TARBALL | ||
tar -xzf $TARBALL | ||
mkdir build | ||
cd build | ||
cmake -GNinja ../$NAME -DHDF5_ENABLE_SZIP_ENCODING:BOOL=OFF -DBUILD_TESTING:BOOL=OFF | ||
ninja | ||
sudo ninja install | ||
# We create a symlink to the install directory that doesn't include the version number, so | ||
# we can use it elsewhere without having to change the version number. | ||
sudo ln -s /usr/local/HDF_Group/HDF5/$VERSION /usr/local/HDF_Group/HDF5/current |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel", "scikit-build==0.14.1", "setuptools_scm[toml]"] | ||
requires = ["setuptools", "wheel", "scikit-build", "setuptools_scm[toml]"] |