Skip to content

Commit 1ed7816

Browse files
authored
Merge pull request #96 from JuliaGeometry/teh/no_jet
Remove JET from Project.toml, get tests passing, bump to Julia 1.10
2 parents 692120d + 10b8f34 commit 1ed7816

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
version:
15-
- '1.0'
16-
- '1.6'
15+
- '1.10'
1716
- '1'
1817
os:
1918
- ubuntu-latest

Project.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name = "CoordinateTransformations"
22
uuid = "150eb455-5306-5404-9cee-2592286d6298"
3-
version = "0.6.3"
3+
version = "0.6.4"
44

55
[deps]
6-
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
76
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
87
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
98

@@ -15,7 +14,7 @@ LinearAlgebra = "1"
1514
StaticArrays = "0.11, 0.12, 1.0"
1615
Test = "1"
1716
Unitful = "1"
18-
julia = "1"
17+
julia = "1.10"
1918

2019
[extras]
2120
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

docs/Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[deps]
2+
CoordinateTransformations = "150eb455-5306-5404-9cee-2592286d6298"
23
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

docs/src/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,16 +179,16 @@ and a translation, e.g. `Translation(v) ∘ LinearMap(v)` (or any combination of
179179

180180
`AffineMap`s can be constructed to fit point pairs `from_points => to_points`:
181181

182-
```jldoctest
182+
```jldoctest; filter=[r"(2\.0|1\.9999\d+)" => "2.0", r"(0\.5|0\.49999\d+)" => "0.5", r"(0\.0|[ -]\d\.\d+e-\d\d)" => "0.0", r"(1\.0(?!0)|1\.0000\d+|0\.9999\d+)" => "1.0"]
183183
julia> from_points = [[0, 0], [1, 0], [0, 1]];
184184
185185
julia> to_points = [[1, 1], [3, 1], [1.5, 3]];
186186
187187
julia> AffineMap(from_points => to_points)
188-
AffineMap([1.9999999999999996 0.5; -5.551115123125783e-16 2.0], [0.9999999999999999, 1.0000000000000002])
188+
AffineMap([2.0 0.5; 0.0 2.0], [1.0, 1.0])
189189
```
190190

191-
The points can be supplied as a collection of vectors or as a matrix with points as columns.
191+
(You may get slightly different numerical values due to roundoff errors.) The points can be supplied as a collection of vectors or as a matrix with points as columns.
192192

193193
### Perspective transformations
194194

0 commit comments

Comments
 (0)