From f612551d0d638214c7e31a2bb119c0739c34d712 Mon Sep 17 00:00:00 2001 From: LonelyProf Date: Wed, 17 Nov 2021 17:36:46 +0000 Subject: [PATCH] Minor updates to documentation --- README.md | 4 ++-- SConstruct | 2 +- python_examples/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3019410..18fdd77 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ rather than working programs, so there is no need to build them. The build process for the Fortran examples has been tested using SCons v4.2.0 -(and some earlier versions with minor changes to the `SConstruct` file). +(and some earlier versions back to v2.5.1 with minor changes to the `SConstruct` file). If you don't like using SCons, or can't get it to work, it is not difficult to compile the programs using other methods. Bear in mind that, with Fortran, it is usually essential to compile any @@ -77,7 +77,7 @@ it is advisable to __compile each example in its own build directory__ (which is what the `SConstruct` file is configured to do) or to delete all intermediate files before each individual compilation. -We have used gfortran v10.3 (and some earlier versions) for testing, +We have used gfortran v11.2.0 (and earlier versions back to v6.3) for testing, but have attempted to stick to code which conforms to the Fortran 2008 standard. In gfortran v6, calling the intrinsic `random_seed()` function would generate the same sequence of random numbers every time. diff --git a/SConstruct b/SConstruct index c2df4b1..16a755d 100644 --- a/SConstruct +++ b/SConstruct @@ -4,7 +4,7 @@ import os, sys -# This has been tested using SCons v4.2.0, gfortran v10.3.0, +# This has been tested using SCons v4.2.0, gfortran v11.2.0, # using MacOS Big Sur (11.6) with compilers and libraries installed through MacPorts. # It may not work on your system. It is possible that you can get it to work by # changing the flags and library/include paths defined in the following few statements. diff --git a/python_examples/README.md b/python_examples/README.md index d770122..17efa84 100644 --- a/python_examples/README.md +++ b/python_examples/README.md @@ -30,5 +30,5 @@ and are written in Python3 using the NumPy and SciPy libraries. The [User Guide](./GUIDE.md) contains some comments on the Python language, some notes to assist in running the programs, and some typical results. -We have used Python 3.8.6 (and before that, 3.6.0 and 3.7.5) for testing. +We have used Python 3.9.5 (and some earlier versions back to 3.6.0) for testing. The Python versions do not require building, they are simply run through the Python interpreter.