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 2525 version :
2626 - ' nightly'
2727 - ' 1'
28+ - ' 1.9'
2829 os :
2930 - ubuntu-latest
3031 - macOS-latest
3536 exclude :
3637 - os : macOS-latest
3738 arch : x86
39+ - os : windows-latest # Killing workers doesn't work on windows in 1.9
40+ version : ' 1.9'
41+
3842 steps :
3943 - uses : actions/checkout@v4
4044 - 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"
77Serialization = " 9e88b42a-f829-5b0c-bbe9-9e923198166b"
88Sockets = " 6462fe0b-24de-5631-8697-dd941f90decc"
99
10+ [compat ]
11+ Random = " 1"
12+ Serialization = " 1"
13+ Sockets = " 1"
14+ julia = " 1.9"
15+
1016[extras ]
1117LibSSH = " 00483490-30f8-4353-8aba-35b82f51f4d0"
1218LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ CurrentModule = DistributedNext
77This documents notable changes in DistributedNext.jl. The format is based on
88[ Keep a Changelog] ( https://keepachangelog.com ) .
99
10- ## Unreleased
10+ ## [ v1.0.0 ] - 2024-12-02
1111
1212### Fixed
1313- Fixed behaviour of ` isempty(::RemoteChannel) ` , which previously had the
Original file line number Diff line number Diff line change 762762# since they print errors. The test block is enabled by defining env
763763# JULIA_TESTFULL=1.
764764
765- DoFullTest = Base . get_bool_env ( " JULIA_TESTFULL" , false )
765+ DoFullTest = get ( ENV , " JULIA_TESTFULL" , " 0 " ) == " 1 "
766766
767767if DoFullTest
768768 println (" Testing exception printing on remote worker from a `remote_do` call" )
@@ -1435,7 +1435,11 @@ v2669=10
14351435 thrown = true
14361436 local b = IOBuffer ()
14371437 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
14391443 end
14401444 @test thrown
14411445 end
You can’t perform that action at this time.
0 commit comments