Skip to content

Commit

Permalink
Merge pull request #15 from j-fu/update-gridvistools
Browse files Browse the repository at this point in the history
Update gridvistools
  • Loading branch information
j-fu authored Nov 24, 2024
2 parents 5c0f18a + 8b50a3c commit a606433
Show file tree
Hide file tree
Showing 11 changed files with 62 additions and 1,858 deletions.
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

2 comments on commit a606433

@j-fu
Copy link
Owner Author

@j-fu j-fu commented on a606433 Nov 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/120084

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.1.0 -m "<description of version>" a6064336e0be1c10f70d104c6946a8aeefb2b2d4
git push origin v1.1.0

Please sign in to comment.