Skip to content

Commit

Permalink
Minor updates to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-P-Allen committed Nov 17, 2021
1 parent c32e9fe commit f612551
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion python_examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

0 comments on commit f612551

Please sign in to comment.