File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 25
25
version :
26
26
- ' nightly'
27
27
- ' 1'
28
+ - ' 1.9'
28
29
os :
29
30
- ubuntu-latest
30
31
- macOS-latest
35
36
exclude :
36
37
- os : macOS-latest
37
38
arch : x86
39
+ - os : windows-latest # Killing workers doesn't work on windows in 1.9
40
+ version : ' 1.9'
41
+
38
42
steps :
39
43
- uses : actions/checkout@v4
40
44
- uses : julia-actions/setup-julia@v2
Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
7
7
Serialization = " 9e88b42a-f829-5b0c-bbe9-9e923198166b"
8
8
Sockets = " 6462fe0b-24de-5631-8697-dd941f90decc"
9
9
10
+ [compat ]
11
+ Random = " 1"
12
+ Serialization = " 1"
13
+ Sockets = " 1"
14
+ julia = " 1.9"
15
+
10
16
[extras ]
11
17
LibSSH = " 00483490-30f8-4353-8aba-35b82f51f4d0"
12
18
LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ CurrentModule = DistributedNext
7
7
This documents notable changes in DistributedNext.jl. The format is based on
8
8
[ Keep a Changelog] ( https://keepachangelog.com ) .
9
9
10
- ## Unreleased
10
+ ## [ v1.0.0 ] - 2024-12-02
11
11
12
12
### Fixed
13
13
- Fixed behaviour of ` isempty(::RemoteChannel) ` , which previously had the
Original file line number Diff line number Diff line change 762
762
# since they print errors. The test block is enabled by defining env
763
763
# JULIA_TESTFULL=1.
764
764
765
- DoFullTest = Base . get_bool_env ( " JULIA_TESTFULL" , false )
765
+ DoFullTest = get ( ENV , " JULIA_TESTFULL" , " 0 " ) == " 1 "
766
766
767
767
if DoFullTest
768
768
println (" Testing exception printing on remote worker from a `remote_do` call" )
@@ -1435,7 +1435,11 @@ v2669=10
1435
1435
thrown = true
1436
1436
local b = IOBuffer ()
1437
1437
showerror (b, e)
1438
- @test occursin (" sqrt was called with a negative real argument" , String (take! (b)))
1438
+ if VERSION < v " 1.10"
1439
+ @test occursin (" sqrt will only return a complex result" , String (take! (b)))
1440
+ else
1441
+ @test occursin (" sqrt was called with a negative real argument" , String (take! (b)))
1442
+ end
1439
1443
end
1440
1444
@test thrown
1441
1445
end
You can’t perform that action at this time.
0 commit comments