Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
version:
- 'nightly'
- '1'
- '1.9'
os:
- ubuntu-latest
- macOS-latest
Expand All @@ -35,6 +36,9 @@ jobs:
exclude:
- os: macOS-latest
arch: x86
- os: windows-latest # Killing workers doesn't work on windows in 1.9
version: '1.9'

steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand Down
6 changes: 6 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"

[compat]
Random = "1"
Serialization = "1"
Sockets = "1"
julia = "1.9"

[extras]
LibSSH = "00483490-30f8-4353-8aba-35b82f51f4d0"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/_changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CurrentModule = DistributedNext
This documents notable changes in DistributedNext.jl. The format is based on
[Keep a Changelog](https://keepachangelog.com).

## Unreleased
## [v1.0.0] - 2024-12-02

### Fixed
- Fixed behaviour of `isempty(::RemoteChannel)`, which previously had the
Expand Down
8 changes: 6 additions & 2 deletions test/distributed_exec.jl
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ end
# since they print errors. The test block is enabled by defining env
# JULIA_TESTFULL=1.

DoFullTest = Base.get_bool_env("JULIA_TESTFULL", false)
DoFullTest = get(ENV, "JULIA_TESTFULL", "0") == "1"

if DoFullTest
println("Testing exception printing on remote worker from a `remote_do` call")
Expand Down Expand Up @@ -1435,7 +1435,11 @@ v2669=10
thrown = true
local b = IOBuffer()
showerror(b, e)
@test occursin("sqrt was called with a negative real argument", String(take!(b)))
if VERSION < v"1.10"
@test occursin("sqrt will only return a complex result", String(take!(b)))
else
@test occursin("sqrt was called with a negative real argument", String(take!(b)))
end
end
@test thrown
end
Expand Down
Loading