Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gridvistools #15

Merged
merged 8 commits into from
Nov 24, 2024
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.6' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
- 'lts' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
# - 'nightly' there are some Pkg problems
os:
Expand All @@ -25,12 +25,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: julia-actions/cache@v2
env:
cache-name: cache-artifacts
with:
Expand All @@ -50,8 +50,8 @@ jobs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- run: |
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
[compat]
AbstractPlutoDingetjes = "1.2"
ColorSchemes = "3"
Colors = "0.12,1"
Colors = "0.12,0.13"
DocStringExtensions = "0.8,0.9"
GridVisualizeTools = "0.3,1"
GridVisualizeTools = "2"
HypertextLiteral = "0.9.5"
julia = "1.6"
96 changes: 0 additions & 96 deletions examples/canvastest.jl

This file was deleted.

8 changes: 3 additions & 5 deletions examples/plotlytest.jl
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
### A Pluto.jl notebook ###
# v0.19.28
# v0.20.3

using Markdown
using InteractiveUtils

# This Pluto notebook uses @bind for interactivity. When running this notebook outside of Pluto, the following 'mock version' of @bind gives bound variables a default value (instead of an error).
macro bind(def, element)
#! format: off
quote
local iv = try Base.loaded_modules[Base.PkgId(Base.UUID("6e696c72-6542-2067-7265-42206c756150"), "AbstractPlutoDingetjes")].Bonds.initial_value catch; b -> missing; end
local el = $(esc(element))
global $(esc(def)) = Core.applicable(Base.get, el) ? Base.get(el) : iv(el)
el
end
#! format: on
end

# ╔═╡ dc111222-038e-479b-993e-5ed58755df27
Expand Down Expand Up @@ -128,9 +130,6 @@ end
# ╔═╡ 5c23809b-9d92-43da-a85d-6c8531c3b547
let X=collect(0:0.1:10); plot(X,sin.(X)) end

# ╔═╡ edfe1dd2-94a5-403f-b589-53bfca839057
"\$x^k\$"

# ╔═╡ 9709e98a-50f3-4ee5-912c-e370c8c93193
function fpdens(x::AbstractFloat;sample_size=1000)
xleft=x
Expand Down Expand Up @@ -189,7 +188,6 @@ html"""<hr>"""
# ╠═5cb73674-c144-4fd9-8ff6-ac767548822e
# ╠═34072263-1180-4bc0-a004-2f112ea4cbed
# ╠═5c23809b-9d92-43da-a85d-6c8531c3b547
# ╠═edfe1dd2-94a5-403f-b589-53bfca839057
# ╠═9709e98a-50f3-4ee5-912c-e370c8c93193
# ╠═f8684eae-00c8-4e19-b638-5be32c045cfc
# ╠═7f5612f3-a0cb-4319-b4bf-4eefe5dc2a18
Expand Down
Loading
Loading