Skip to content
Open
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
11 changes: 6 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.9'
- 'lts'
- '1'
- 'nightly'
os:
Expand All @@ -20,12 +20,12 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
- uses: actions/cache@v4
env:
cache-name: cache-artifacts
with:
Expand All @@ -38,6 +38,7 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: lcov.info
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ComplexPhasePortrait"
uuid = "38ac1a67-8e16-5889-9a62-b2c9995eb50f"
version = "0.2.2"
version = "0.2.3"

[deps]
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
Expand All @@ -16,11 +16,11 @@ Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a"
ComplexPhasePortraitMakieExt = "Makie"

[compat]
CairoMakie = "0.11"
Colors = "0.12"
Images = "0.22,0.23,0.26"
CairoMakie = "0.11, 0.12"
Colors = "0.12, 0.13"
Images = "0.22, 0.23, 0.24, 0.25, 0.26"
IntervalSets = "0.3.1, 0.4, 0.5, 0.7"
Makie = "0.20"
Makie = "0.20, 0.21"
Plots = "1.40"
Reactive = "0.8.2"
RecipesBase = "1"
Expand Down
2 changes: 1 addition & 1 deletion ext/ComplexPhasePortraitMakieExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function plot!(plot::Phase{Tuple{X,Y,F}}) where {X<:AbstractVector,Y<:AbstractVe
a_x,b_x = first(x[]),last(x[])
a_y,b_y = first(y[]),last(y[])

image!(plot, a_x .. b_x, a_y .. b_y, c, limits = Rectf(a_x,a_y,b_x-a_x,b_y-a_y))
image!(plot, a_x .. b_x, a_y .. b_y, c)
end

function plot!(plot::Phase{Tuple{X,Y,F}}) where {X<:Any,Y<:Any,F<:Function}
Expand Down
Loading