diff --git a/README.md b/README.md index 265a769..071fab7 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,14 @@ ## Description -**IMPORTANT**: If you are just starting to learn how to use PyLith or wanting to run PyLith on a laptop or workstation, then we highly recommend using the binary packages. Installation instructions for binary packages are available in the PyLith manual available from the [PyLith webpage](https://geodynamics.org/cig/software/pylith/) on the [CIG website](https://geodynamics.org). +**IMPORTANT**: If you are just starting to learn how to use PyLith or wanting to run PyLith on a laptop or workstation, then we highly recommend using the binary packages. Installation instructions for binary packages are available in the PyLith manual available from the [PyLith webpage](https://geodynamics.org/resources/pylith/) on the [CIG website](https://geodynamics.org). This installer builds the current PyLith release and its dependencies from source. ## Documentation * [Development version](https://pylith-installer.readthedocs.io/en/latest/) +* [Stable version](heeps://pylith-installer.readthedocs.io/en/v3.0.3-0) * See the corresponding version of the PyLith manual for v2.2.2 and earlier ## Author diff --git a/developer/release-announcement.md b/developer/release-announcement.md index c60fe5d..4fa6dc8 100644 --- a/developer/release-announcement.md +++ b/developer/release-announcement.md @@ -1,4 +1,4 @@ -We are pleased to announce release of PyLith Installer version 3.0.0-0. +We are pleased to announce release of PyLith Installer version 3.0.3-0. Please submit bug reports via GitHub issues: https://github.com/geodynamics/pylith_installer/issues @@ -9,6 +9,6 @@ conditions. PyLith Installer is a utility for building PyLith and its dependencies from source on Unix flavored operating systems. -You can download the installer from https://geodynamics.org/cig/software/pylith. +You can download the installer from https://geodynamics.org/resources/pylith. -Instructions are online at https://geodynamics.github.io/pylith_installer. +Instructions are online at https://pylith-installer.readthedocs.io/en/v3.0.3-0. diff --git a/docs/conf.py b/docs/conf.py index 87753d1..4865b74 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,7 +20,7 @@ author = 'Brad T. Aagaard' # The full version, including alpha/beta/rc tags -release = 'v3.0.0-0dev' +release = 'v3.0.3-0' # -- General configuration --------------------------------------------------- diff --git a/docs/configs/clusters.md b/docs/configs/clusters.md index 97f98fe..a2d18d1 100644 --- a/docs/configs/clusters.md +++ b/docs/configs/clusters.md @@ -18,5 +18,5 @@ We assume that Python was not built with the same compiler suite as MPI. The `-- If Python was built with the same compilers used to build MPI, then then you do not need the `--enable-python` option. ```bash -$HOME/src/pylith/pylith-installer-3.0.0-0/configure --enable-python --with-make-threads=8 --prefix=$HOME/pylith +$HOME/src/pylith/pylith-installer-3.0.3-0/configure --enable-python --with-make-threads=8 --prefix=$HOME/pylith ``` diff --git a/docs/devenv/configs.md b/docs/devenv/configs.md index b534543..207af0b 100644 --- a/docs/devenv/configs.md +++ b/docs/devenv/configs.md @@ -47,7 +47,7 @@ We use the following directory structure: ```{code-block} console pylith-developer/ -├── pylith_installer-3.0.0-0 # source code for the installer +├── pylith_installer-3.0.3-0 # source code for the installer ├── build-debug # top-level directory for building with debugging └── pylith-debug # directory where PyLith and other CIG code is installed by installer ``` @@ -91,7 +91,7 @@ mkdir -p $PYLITH_DIR cd $PYLITH_DIR # Place the installer source code tarball in $PYLITH_DIR and then unpack the tarball. -tar -xf pylith_installer-3.0.0-0.tar.gz +tar -xf pylith_installer-3.0.3-0.tar.gz ``` ## Linux @@ -121,7 +121,7 @@ Configure the installer. ```{code-block} bash mkdir $PYLITH_DIR/build-debug cd $PYLITH_DIR/build-debug -$PYLITH_DIR/pylith_installer-3.0.0-0/configure \ +$PYLITH_DIR/pylith_installer-3.0.3-0/configure \ --enable-developer \ --with-debugging \ --with-pylith-git=$PYLITH_BRANCH \ @@ -172,7 +172,7 @@ Configure the installer. ```{code-block} bash mkdir $PYLITH_DIR/build-debug cd $PYLITH_DIR/build-debug -${HOME}/src/pylith/pylith_installer-3.0.0-0/configure \ +${HOME}/src/pylith/pylith_installer-3.0.3-0/configure \ --enable-developer \ --with-debugging \ --with-pylith-git=$PYLITH_BRANCH \ diff --git a/docs/devenv/docker/update.md b/docs/devenv/docker/update.md index f0c31da..fdc5ca8 100644 --- a/docs/devenv/docker/update.md +++ b/docs/devenv/docker/update.md @@ -15,4 +15,4 @@ Pulling the PyLith development environment Docker image does not update Pythia, ## Updating PETSc or PyLith -See [Rebuilding PETSc and PyLith in the PyLith Developer Guide](https://pylith.readthedocs.io/en/latest/developer/contributing/rebuilding.html) for how to update PETSc and PyLith. +See [Rebuilding PETSc and PyLith in the PyLith Developer Guide](https://pylith.readthedocs.io/en/v3.0.3/developer/contributing/rebuilding.html) for how to update PETSc and PyLith. diff --git a/docs/index.md b/docs/index.md index 2561fbe..6671093 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,7 +6,7 @@ This utility builds the current PyLith release and its dependencies from source. :::{important} If you are just starting to learn how to use PyLith or wanting to run PyLith on a laptop or workstation, then we highly recommend using the binary packages. -Installation instructions for binary packages are available in the PyLith manual available from the [PyLith webpage](https://geodynamics.org/cig/software/pylith/) on the [CIG website](https://geodynamics.org). +Installation instructions for binary packages are available in the PyLith manual available from the [PyLith webpage](https://geodynamics.org/resources/pylith/) on the [CIG website](https://geodynamics.org). ::: diff --git a/docs/install/configure.md b/docs/install/configure.md index d999387..e236f73 100644 --- a/docs/install/configure.md +++ b/docs/install/configure.md @@ -21,7 +21,7 @@ The default configure options assume you have: In this case, you simply specify the number of threads and the destination directory: ```bash mkdir -p $HOME/build/pylith -$HOME/src/pylith/pylith-installer-3.0.0-0/configure --with-make-threads=2 --prefix=$HOME/pylith +$HOME/src/pylith/pylith-installer-3.0.3-0/configure --with-make-threads=2 --prefix=$HOME/pylith ``` ## Configure options diff --git a/docs/install/download.md b/docs/install/download.md index 830714f..9a74afb 100644 --- a/docs/install/download.md +++ b/docs/install/download.md @@ -1,16 +1,16 @@ # 1. Download the installer -## Download the installer from the CIG website. +## Download the installer from the CIG website - + - We assume the tarball `pylith-installer-3.0.0-0.tgz` is downloaded to `$HOME/Downloads`. We will place the installer source code in the directory `$HOME/src/pylith`. + We assume the tarball `pylith-installer-3.0.3-0.tgz` is downloaded to `$HOME/Downloads`. We will place the installer source code in the directory `$HOME/src/pylith`. ## Unpack the installer source code: ```bash mkdir -p $HOME/src/pylith cd $HOME/src/pylith -mv $HOME/Downloads/pylith-installer-3.0.0-0.tgz $HOME/src/pylith/ -tar -xf pylith-installer-3.0.0-0.tgz +mv $HOME/Downloads/pylith-installer-3.0.3-0.tgz $HOME/src/pylith/ +tar -xf pylith-installer-3.0.3-0.tgz ```