Skip to content

Commit

Permalink
Switch off precompilation
Browse files Browse the repository at this point in the history
Start development hints
  • Loading branch information
j-fu committed Jul 29, 2023
1 parent 851023c commit faba3b6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
4 changes: 1 addition & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "VoronoiFVM"
uuid = "82b139dc-5afc-11e9-35da-9b9bdfd336f3"
authors = ["Jürgen Fuhrmann <[email protected]>", "Dilara Abdel", "Jan Weidner", "Alexander Seiler", "Patricio Farrell", "Matthias Liero"]
version = "1.13.1"
version = "1.13.2"

[deps]
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
Expand All @@ -16,7 +16,6 @@ InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
LinearSolve = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
Expand All @@ -40,7 +39,6 @@ ForwardDiff = "0.10.35"
GridVisualize = "0.5.2,0.6.1,1"
JLD2 = "0.4.29"
LinearSolve = "2.2"
PrecompileTools = "1"
RecursiveArrayTools = "^2.14.2"
RecursiveFactorization = "0.2.18"
SparseDiffTools = "^1.19, 2"
Expand Down
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ function make_all(; with_examples = true, run_notebooks = true, example=nothing)
"misc.md",
"internal.md",
"allindex.md",
"devel.md",
],
"Tutorial Notebooks" => notebooks,
"Examples" => generated_examples,
Expand Down
10 changes: 10 additions & 0 deletions docs/src/devel.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Development hints
Here, a bit of development hints are given which mainly concern tests and documentation generation.

## Pluto notebooks
The pluto notebooks in this package are "triple use":
- As typical Pluto notebooks, they are self-contained in the senses that they contain their own Project and Manifest files. So users can just download and execute them.
- If they run with the environmnet variable `PLUTO_PROJECT` set to some julia environment, this environment will activated at the start of the notebook. In particular, they use `Revise.jl` so they can be run during development
of VoronoiFVM.jl. See also https://github.com/fonsp/Pluto.jl/issues/1788 .
- During CI tests, they are run as scripts. For this purpose they are wrapped into temporariy modules, and @test macros can used in the notebooks.





2 changes: 1 addition & 1 deletion src/VoronoiFVM.jl
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,6 @@ export eval_rhs!, eval_jacobian!, mass_matrix, prepare_diffeq!

include("gridvisualize.jl")

include("precompile.jl")
#include("precompile.jl")

end

2 comments on commit faba3b6

@j-fu
Copy link
Member Author

@j-fu j-fu commented on faba3b6 Jul 29, 2023

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/88630

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.13.2 -m "<description of version>" faba3b6edbaf9d090feb3df60a06f2a4a14d5aaf
git push origin v1.13.2

Please sign in to comment.