From c899f033e5f5af4afa87466d1100caa20a616b1d Mon Sep 17 00:00:00 2001 From: LonelyProf Date: Wed, 20 Nov 2019 11:32:21 +0000 Subject: [PATCH] Updated versions used for testing --- README.md | 6 +++--- python_examples/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e2e78e3..5f888b8 100644 --- a/README.md +++ b/README.md @@ -59,8 +59,8 @@ A few examples consist of individual routines or modules, rather than working programs, so there is no need to build them. -The build process for the Fortran examples has been tested using SCons v3.0.4 -(and before that, v2.5.1, with a minor change to the `SConstruct` file; +The build process for the Fortran examples has been tested using SCons v3.1.1 +(and before that, v3.0.4; and also v2.5.1 with a minor change to the `SConstruct` file; older versions might not work properly). 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. @@ -78,7 +78,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 v8.2 (and before that, v6.3, v7.2) for testing, +We have used gfortran v9.2 (and before that, v6.3, v7.2, v8.2) 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/python_examples/README.md b/python_examples/README.md index a5a8806..9f1f95e 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.6.0 for testing. +We have used Python 3.7.5 (and before that, 3.6.0) for testing. The Python versions do not require building, they are simply run through the Python interpreter.