-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: install latest Julia version (#275)
* DOC: update instructions to Julia 1.10.3 * DX: do not run Julia notebook on RTD * DX: install IJulia kernel through `conf.py` * DX: pin IJulia dependencies * DX: pin Julia version on RTD from `Manifest.toml` * DX: rename Julia kernel to `compwa.github.io` * DX: run TR-019 on RTD * FIX: correctly install Julia in RTD * FIX: remove conda default channel The latest version of `julia` was not installed because Conda's `defaults` channel installs an older version * FIX: run TR-019 (Julia example) through Sphinx * MAINT: build `nb_exclusion_patterns` with `set` * MAINT: revert to `import Pkg` * MAINT: update `Manifest.toml` in TR-019
- Loading branch information
Showing
8 changed files
with
411 additions
and
346 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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
if [ -z "$READTHEDOCS" ]; then | ||
echo "Can only run this script on Read the Docs" | ||
exit 1 | ||
fi | ||
|
||
version=$(sed -n '3p' docs/report/019/Manifest.toml | cut -d'"' -f2) | ||
major_version=${version:0:-2} | ||
echo "Installing Julia v${version}" | ||
filename=julia-${version}-linux-x86_64.tar.gz | ||
wget -q https://julialang-s3.julialang.org/bin/linux/x64/${major_version}/${filename} | ||
tar xzf ${filename} -C ~/.asdf --strip-components=1 |
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
Oops, something went wrong.