Skip to content

Commit bc11a2b

Browse files
authored
move docs (#5218)
1 parent 6097a36 commit bc11a2b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+17
-15
lines changed

.gitignore

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,16 @@ deps/plotly-*
1111
deps/build.log
1212
deps/deps.jl
1313

14-
Manifest-v*.toml
15-
Manifest.toml
14+
**/Manifest-v*.toml
15+
**/Manifest.toml
1616

1717
# docs
1818
**/generated*/
19-
Plots/docs/build*/
20-
Plots/docs/work*/
21-
Plots/test/tmpplotsave.hdf5
19+
20+
**/docs/build*/
21+
**/docs/work*/
22+
23+
**/test/tmpplotsave.hdf5
2224

2325
/benchmark/*.json
2426
/.benchmarkci

ci/build-docs.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ banner() {
3636
}
3737

3838
julia_project() {
39-
xvfb-run -a julia --color=yes --project=Plots/docs "$@"
39+
xvfb-run -a julia --color=yes --project=docs "$@"
4040
}
4141

4242
install_ubuntu_deps() {
@@ -69,7 +69,7 @@ install_and_precompile_julia_deps() {
6969
banner
7070
JULIA_PKG_PRECOMPILE_AUTO=0 julia_project ci/matplotlib.jl
7171
echo '== precompile docs dependencies =='
72-
julia_project Plots/docs/make.jl none
72+
julia_project docs/make.jl none
7373
}
7474

7575
build_documenter_docs() {
@@ -80,5 +80,5 @@ build_documenter_docs() {
8080
export PLOTDOCS_ANSICOLOR=true
8181
# export PLOTDOCS_PACKAGES='UnicodePlots'
8282
# export PLOTDOCS_EXAMPLES=1
83-
julia_project Plots/docs/make.jl all
83+
julia_project docs/make.jl all
8484
}
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ UnicodePlots = "3"
7575
Unitful = "1"
7676

7777
[sources]
78-
Plots = {path = ".."}
79-
PlotsBase = {path = "../../PlotsBase"}
80-
PlotThemes = {path = "../../PlotThemes"}
81-
RecipesBase = {path = "../../RecipesBase"}
82-
RecipesPipeline = {path = "../../RecipesPipeline"}
83-
StatsPlots = {path = "../../StatsPlots"}
84-
GraphRecipes = {path = "../../GraphRecipes"}
78+
Plots = {path = "../Plots"}
79+
PlotsBase = {path = "../PlotsBase"}
80+
PlotThemes = {path = "../PlotThemes"}
81+
RecipesBase = {path = "../RecipesBase"}
82+
RecipesPipeline = {path = "../RecipesPipeline"}
83+
StatsPlots = {path = "../StatsPlots"}
84+
GraphRecipes = {path = "../GraphRecipes"}

0 commit comments

Comments
 (0)