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: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.11'
- '1.12'
os:
- ubuntu-latest
arch:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
miniforge-version: latest
- uses: julia-actions/setup-julia@v1
with:
version: '1.11'
version: '1.12'
- name: Set CAT packages to develop & resolve env
run: |
julia --project=docs/ -e 'using Pkg;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v2
with:
version: "1.11"
version: "1.12"
- uses: julia-actions/cache@v2
- name: Extract Package Name from Project.toml
id: extract-package-name
Expand Down
15 changes: 3 additions & 12 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ TestExt = "Test"

[compat]
Accessors = "^0.1.12"
Aqua = "0.8"
AutoHashEquals = "2"
ConstructionBase = "^1.2"
DataFrames = "1.6.1"
Expand All @@ -54,13 +53,11 @@ FittedItemBanks = "^0.7.2"
ForwardDiff = "1"
HypothesisTests = "^0.10.12, ^0.11.0"
Interpolations = "^0.14, ^0.15"
JET = "^0.9"
Lazy = "0.15"
LinearAlgebra = "^1.11"
LogarithmicNumbers = "1"
MacroTools = "^0.5.6"
Mmap = "^1.11"
Optim = "1.7.3"
PrecompileTools = "1.2.1"
PsychometricsBazaarBase = "^0.8.4"
QuickHeaps = "0.2.2"
Expand All @@ -72,13 +69,7 @@ StaticArrays = "1"
StatsBase = "^0.34"
StatsFuns = "^0.9.15, ^1"
Test = "^1.11"
julia = "^1.11"
julia = "^1.12"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
Optim = "429524aa-4258-5aef-a3af-852621145aeb"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Aqua", "JET", "Optim", "Test"]
[workspace]
projects = ["docs", "test"]
4 changes: 2 additions & 2 deletions src/Comparison/watchdog.jl
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ function deactivate!(watchdog::WatchdogTask)
if istaskdone(watchdog.task)
wait(watchdog.task)
end
put(watchdog.channel, (; active=false))
put!(watchdog.channel, (; active=false))
end

struct NullWatchdog <: AbstractWatchdogTask end
function reset!(::NullWatchdog, msg=nothing) end
function deactivate!(::NullWatchdog) end
function deactivate!(::NullWatchdog) end
2 changes: 2 additions & 0 deletions src/Sim/recorder.jl
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,8 @@ function CatRecorder(dims::Int, expected_responses::Int; requests...)
data = empty_capacity(Float64, dims, length(request.points), expected_responses)
end
extra = (; points = request.points)
else
error("Unknown request type: $(request.type)")
end
push!(out, (name => (;
label=haskey(request, :label) ? request.label : name_to_label(name),
Expand Down
10 changes: 10 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[deps]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
ComputerAdaptiveTesting = "5a0d4f34-1f62-4a66-80fe-87aba0485488"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
FittedItemBanks = "3f797b09-34e4-41d7-acf6-3302ae3248a5"
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
Optim = "429524aa-4258-5aef-a3af-852621145aeb"
PsychometricsBazaarBase = "b0d9cada-d963-45e9-a4c6-4746243987f1"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Loading