From bc47b88f38994df08b9ea6201c1b2ef1e8d4b99c Mon Sep 17 00:00:00 2001 From: Jutho Haegeman Date: Thu, 19 Oct 2017 00:46:04 +0200 Subject: [PATCH] Fix README --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 672d493..5fa1984 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,15 @@ Compute Wigner's 3j and 6j symbols, and related quantities such as Clebsch-Gordan coefficients and Racah's symbols. ## Requirements -This requires a recent master edition of Julia (i.e. v0.7.0-DEV), because it depends on some changes in `Base.GMP`. In particular, it uses the mutating functions for reducing allocation overhead while working with `BigInts` (namely [JuliaLang/julia#21654](https://github.com/JuliaLang/julia/pull/21654)). It also depends on `Primes.jl` for generating prime numbers. +~~This requires a recent master edition of Julia (i.e. v0.7.0-DEV), because it depends on some changes in `Base.GMP`. In particular, it uses the mutating functions for reducing allocation overhead while working with `BigInts` (namely [JuliaLang/julia#21654](https://github.com/JuliaLang/julia/pull/21654)). It also depends on `Primes.jl` for generating prime numbers.~~ + +Now works from Julia v0.6.0 onwards (by including/backporting the relevant code from Julia Base in this package). + ## Installation -Until it is registered, install via `Pkg.clone("https://github.com/Jutho/WignerSymbols.jl.git")`. +~~Until it is registered, install via `Pkg.clone("https://github.com/Jutho/WignerSymbols.jl.git")`.~~ + +Now that it is register, install via `Pkg.add("https://github.com/Jutho/WignerSymbols.jl.git")`. ## Available functions While the following function signatures are probably self-explanatory, you can query help for them in the Julia REPL to get further details.