Skip to content

Commit 9782b10

Browse files
committed
remove non-Figure related code from former TwPrototypes
1 parent b123738 commit 9782b10

35 files changed

Lines changed: 132 additions & 721 deletions

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ jobs:
7373
- run: |
7474
julia --project=docs -e '
7575
using Documenter: doctest, DocMeta
76-
using TwPrototypes # change TwPrototypes to the name of your package
77-
DocMeta.setdocmeta!(TwPrototypes, :DocTestSetup, :(using TwPrototypes); recursive=true)
78-
doctest(TwPrototypes)'
76+
using FigureHelpers # change FigureHelpers to the name of your package
77+
DocMeta.setdocmeta!(FigureHelpers, :DocTestSetup, :(using FigureHelpers); recursive=true)
78+
doctest(FigureHelpers)'
7979
- run: julia --project=docs docs/make.jl
8080
env:
8181
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
tmp
22
pdf/*
33
Manifest*.toml
4+

Project.toml

Lines changed: 7 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
1-
name = "TwPrototypes"
2-
uuid = "9ae22f58-2487-4805-bfc5-386577db46c7"
1+
name = "FigureHelpers"
2+
uuid = "9ae22f58-2487-4805-bfc5-386577db46c8"
33
authors = ["Thomas Wutzler <bgctw@arcor.de>"]
4-
version = "0.2.0"
4+
version = "0.1.0"
55

66
[deps]
7-
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
8-
ComponentArrays = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66"
9-
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
10-
InlineStrings = "842dd82b-1e85-43dc-bf29-5d0ee9dffc48"
117
KernelDensity = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b"
128
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
13-
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
14-
SimpleTraits = "699a6c99-e7fa-54fc-8d76-47d257e15c1d"
159
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1610

1711
[weakdeps]
@@ -20,29 +14,18 @@ CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
2014
MCMCChains = "c7f686f2-ff18-58e9-bc7b-31028e88f75d"
2115

2216
[extensions]
23-
TwPrototypesAoGExt = ["CairoMakie", "AlgebraOfGraphics"]
24-
TwPrototypesCairoMakieExt = "CairoMakie"
25-
TwPrototypesMCMCChainsExt = "MCMCChains"
17+
FigureHelpersAoGExt = ["CairoMakie", "AlgebraOfGraphics"]
18+
FigureHelpersCairoMakieExt = ["CairoMakie", "KernelDensity"]
19+
FigureHelpersMCMCChainsExt = "MCMCChains"
2620

2721
[compat]
2822
AlgebraOfGraphics = "0.9.4, 0.10"
29-
CSV = "0.10.15"
3023
CairoMakie = "0.13.2"
31-
ComponentArrays = "0.13, 0.14, 0.15"
32-
DataFrames = "1.4"
33-
InlineStrings = "1.4.4"
3424
KernelDensity = "0.6.10"
3525
MCMCChains = "6.0.7"
36-
Parameters = "0.12"
37-
Pkg = "1.10"
38-
SimpleTraits = "0.9"
26+
Parameters = "0.12.3"
3927
StatsBase = "0.34.5"
4028
julia = "1.10"
4129

42-
[extras]
43-
AlgebraOfGraphics = "cbdf2221-f076-402e-a563-3d30da359d67"
44-
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
45-
MCMCChains = "c7f686f2-ff18-58e9-bc7b-31028e88f75d"
46-
4730
[workspace]
4831
projects = ["test", "docs"]

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
[![Build status (Github Actions)](https://github.com/bgctw/TwPrototypes.jl/workflows/CI/badge.svg)](https://github.com/bgctw/TwPrototypes.jl/actions)
2-
[![codecov.io](http://codecov.io/github/bgctw/TwPrototypes.jl/coverage.svg?branch=main)](http://codecov.io/github/bgctw/TwPrototypes.jl?branch=main)
3-
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://bgctw.github.io/TwPrototypes.jl/stable/)
4-
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://bgctw.github.io/TwPrototypes.jl/dev/)
1+
[![Build status (Github Actions)](https://github.com/bgctw/FigureHelpers.jl/workflows/CI/badge.svg)](https://github.com/bgctw/FigureHelpers.jl/actions)
2+
[![codecov.io](http://codecov.io/github/bgctw/FigureHelpers.jl/coverage.svg?branch=main)](http://codecov.io/github/bgctw/FigureHelpers.jl?branch=main)
3+
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://bgctw.github.io/FigureHelpers.jl/stable/)
4+
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://bgctw.github.io/FigureHelpers.jl/dev/)
55

6-
# TwPrototypes.jl
6+
# FigureHelpers.jl
77

88
Concepts in Julia that have not found its proper package.
99

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
FigureHelpers = "9ae22f58-2487-4805-bfc5-386577db46c8"
34
Missings = "e1d29d7a-bbdc-5cf2-9ac0-f12de2c33e28"
4-
TwPrototypes = "9ae22f58-2487-4805-bfc5-386577db46c7"

docs/make.jl

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
using Documenter
2-
using TwPrototypes
2+
using FigureHelpers
33

44
push!(LOAD_PATH,"../src/")
5-
makedocs(sitename="TwPrototypes.jl",
5+
makedocs(sitename="FigureHelpers.jl",
66
doctest = false,
77
pages = [
88
"Home" => "index.md",
9-
"Pkg utilities" => "pkg_utils.md",
10-
"Data management" => "data_management.md",
11-
"Dispatch" => "isofeltype.md",
129
"Makie" => "makie.md",
1310
"AoG" => "aog.md",
1411
],
15-
#modules = [TwPrototypes],
12+
#modules = [FigureHelpers],
1613
format = Documenter.HTML(prettyurls = false)
1714
)
1815
# Documenter can also automatically deploy documentation to gh-pages.
1916
# See "Hosting Documentation" and deploydocs() in the Documenter manual
2017
# for more information.
2118
deploydocs(
22-
repo = "github.com/bgctw/TwPrototypes.jl.git",
19+
repo = "github.com/bgctw/FigureHelpers.jl.git",
2320
devbranch = "main"
2421
)

docs/src/aog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Several convenience functions that provide simple calls to common functionality.
44

55
```@docs
6-
set_default_CMTheme!
6+
set_default_AoGTheme!
77
draw_with_legend!
88
```
99

docs/src/data_management.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

docs/src/index.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1-
# TwPrototypes.jl
1+
# FigureHelpers.jl
22

33
```@docs
4-
TwPrototypes
4+
FigureHelpers
55
```
66

7-
```@contents
8-
Pages = ["isofeltype.md"]
9-
Depth = 2
10-
```
11-
12-
See all the [github repository](https://github.com/bgctw/TwPrototypes.jl).
7+
See all the [github repository](https://github.com/bgctw/FigureHelpers.jl).
138

docs/src/isofeltype.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)