Skip to content

Commit 74bb686

Browse files
committed
fixed audio in docs and removed arraypartition patch
1 parent 0d92567 commit 74bb686

3 files changed

Lines changed: 3 additions & 8 deletions

File tree

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
julia: 1.1
2424
os: linux
2525
script:
26-
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
27-
Pkg.instantiate()'
26+
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
2827
- julia --project=docs/ docs/make.jl
2928
after_success: skip

docs/src/demos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Clipped audio sample
1515

1616
(**Warning** there are severe distortions and you might want to turn down your volume before playing)
1717
```@raw html
18-
<audio src="assets/clipped.wav" controls preload></audio>
18+
<audio src="https://raw.githubusercontent.com/kul-forbes/StructuredOptimization.jl/master/docs/src/assets/clipped.wav" controls preload></audio>
1919
```
2020

2121
De-clipped audio sample
2222

2323
```@raw html
24-
<audio src="assets/declipped.wav" controls preload></audio>
24+
<audio src="https://raw.githubusercontent.com/kul-forbes/StructuredOptimization.jl/master/docs/src/assets/declipped.wav" controls preload></audio>
2525
```

src/arraypartition.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,3 @@ end
3434
h::ProximalOperators.ProximableFunction,
3535
x::RecursiveArrayTools.ArrayPartition
3636
) = ProximalOperators.gradient!(y.x, h, x.x)
37-
38-
# fix to https://github.com/JuliaDiffEq/RecursiveArrayTools.jl/issues/68
39-
# possibly remove it once issue is resolved
40-
Base.copyto!(x::ArrayPartition, y::ArrayPartition) = x .= y

0 commit comments

Comments
 (0)