Skip to content

Commit bb4c322

Browse files
committed
fix links to sylab docs
1 parent b3a1f96 commit bb4c322

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

build.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ if [ "${DEBUG:-0}" -gt 0 ]; then
55
fi
66

77
DEPSDIR="$PWD/pypkgs"
8-
pyver=python$(python3 -c "import sys; print(\"%s.%s\" % sys.version_info[:2])")
8+
pyver=python$(python3.12 -c "import sys; print(\"%s.%s\" % sys.version_info[:2])")
99
export PYTHONPATH=$DEPSDIR/lib/$pyver/site-packages:$DEPSDIR/lib64/$pyver/site-packages:$PWD/custom_plugin:$PWD/computational_macros:$PYTHONPATH
1010
export PATH=$DEPSDIR/bin:$PATH
1111

1212

1313
if [ "${INSTALLDEPS:-0}" -gt 0 ]; then
14-
python3 -m pip install --use-pep517 --ignore-installed --prefix "$DEPSDIR" -r requirements.txt
15-
python3 -m pip install --use-pep517 --prefix "$DEPSDIR" "$PWD"/custom_plugin
16-
python3 -m pip install --use-pep517 --prefix "$DEPSDIR" "$PWD"/computational_macros
14+
python3.12 -m pip install --use-pep517 --ignore-installed --prefix "$DEPSDIR" -r requirements.txt
15+
python3.12 -m pip install --use-pep517 --prefix "$DEPSDIR" "$PWD"/custom_plugin
16+
python3.12 -m pip install --use-pep517 --prefix "$DEPSDIR" "$PWD"/computational_macros
1717
# not needed for actual page
18-
python3 -m pip install --use-pep517 --ignore-installed --prefix "$DEPSDIR" linkchecker
18+
python3.12 -m pip install --use-pep517 --ignore-installed --prefix "$DEPSDIR" linkchecker
1919
fi
2020

21-
python3 build.py "$@"
21+
python3.12 build.py "$@"
2222

2323
if [ "${WEBSERVER:-0}" -gt 0 ]; then
2424
webbase=build

mkdocs/docs/HPC/singularity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ complete environments can easily be copied and executed on other
1313
platforms.
1414

1515
For more general information about the use of Singularity, please see
16-
the official documentation at <https://www.sylabs.io/docs/>.
16+
the official documentation at <https://docs.sylabs.io/guides/main/user-guide>.
1717

1818
This documentation only covers aspects of using Singularity on the
1919
infrastructure.
@@ -63,7 +63,7 @@ restrictions:
6363

6464
For more information on converting existing Docker images to Singularity
6565
images, see
66-
<https://www.sylabs.io/guides/3.4/user-guide/singularity_and_docker.html>.
66+
<https://docs.sylabs.io/guides/main/user-guide/singularity_and_docker.html>.
6767

6868
We strongly recommend the use of Docker Hub, see
6969
<https://hub.docker.com/> for more information.

0 commit comments

Comments
 (0)