From eebe99dc99cac7613ab7dc3149f143c82326931d Mon Sep 17 00:00:00 2001 From: Ronny Bergmann Date: Tue, 31 Oct 2023 07:18:33 +0100 Subject: [PATCH] General Registry is now strict with compats for standard libs. (#172) * General Registry is now strict with compats for standard libs. * Forgot to start from current master, update NEWS.md --- NEWS.md | 1 + Project.toml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/NEWS.md b/NEWS.md index 81cb5c83..257a596b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `is_point` and `is_vector` for the tangent space now correctly forward to vector checks on the corresponding manifold. The same for both `check_size`s +- add `[compat]` entries for the standard libraries. ## [0.15.0] 21/10/2023 diff --git a/Project.toml b/Project.toml index 48ae29ca..60fdcd21 100644 --- a/Project.toml +++ b/Project.toml @@ -18,6 +18,9 @@ ManifoldsBaseRecursiveArrayToolsExt = "RecursiveArrayTools" [compat] DoubleFloats = ">= 0.9.2" julia = "1.6" +LinearAlgebra = "1.6" +Markdown = "1.6" +Random = "1.6" RecursiveArrayTools = "2" Requires = "1"