From 8170dd03afdad2212b1f9314a91a9a1bdeffcb49 Mon Sep 17 00:00:00 2001 From: Leandro Martinez Date: Tue, 10 Dec 2024 21:56:56 -0300 Subject: [PATCH] drop compatibility for Julia < 1.10 --- .github/workflows/ci.yml | 1 - Project.toml | 16 ++++++++-------- docs/src/installation.md | 2 +- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ffb90566..62c2c9c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,6 @@ jobs: fail-fast: false matrix: version: - - '1.9' - 'lts' - 'pre' os: diff --git a/Project.toml b/Project.toml index 2fe766aa..9e15dd32 100644 --- a/Project.toml +++ b/Project.toml @@ -35,27 +35,27 @@ BenchmarkTools = "1" CellListMap = "0.8.30, 0.9" Chemfiles = "0.10.3" ChunkSplitters = "3.1" -DelimitedFiles = "1.9" +DelimitedFiles = "1.10" DocStringExtensions = "0.9.1" Documenter = "1.3" FortranFiles = "0.6" JSON3 = "1.11.1" -LinearAlgebra = "1.9" -PDBTools = "1.8.1, 2" +LinearAlgebra = "1.10" +PDBTools = "2" Plots = "1.39" PrecompileTools = "1" -Printf = "1.9" +Printf = "1.10" ProgressMeter = "1.10.1" -Random = "1.9" +Random = "1.10" RandomNumbers = "1.5" StableRNGs = "1" StaticArrays = "1.6" -Statistics = "1.9" +Statistics = "1.10" StructTypes = "1.10" -Test = "1.9" +Test = "1.10" TestItemRunner = "0.2" TestItems = "0.1, 1" -julia = "1.9" +julia = "1.10" [extras] Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" diff --git a/docs/src/installation.md b/docs/src/installation.md index 2d186638..7dc8ebe3 100644 --- a/docs/src/installation.md +++ b/docs/src/installation.md @@ -8,7 +8,7 @@ ## Install Julia -First you need to install the Julia language, version 1.9 or greater is required. +First you need to install the Julia language, version 1.10 or greater is required. Using the [juliaup](https://github.com/JuliaLang/juliaup) tool is a highly recommended way of installing and keeping Julia up to date. Alternatively, you can install Julia by downloading the binaries directly from [the Julia webpage](https://julialang.org).