From 05d5b091bba50865ef7eecef81a95e02b4b1339b Mon Sep 17 00:00:00 2001 From: t-bltg Date: Wed, 13 Nov 2024 11:07:35 +0100 Subject: [PATCH] change dev order --- .github/workflows/ci.yml | 6 +++--- docs/make.jl | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 663f19b01..57ba5581d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,11 +73,11 @@ jobs: Pkg.develop([ (; path="./RecipesBase"), (; path="./RecipesPipeline"), + (; path="./PlotThemes"), (; path="./PlotsBase"), - (; path="."), (; path="./GraphRecipes"), (; path="./StatsPlots"), - (; path="./PlotThemes"), + (; path="."), ]) - name: Install conda based matplotlib @@ -96,8 +96,8 @@ jobs: ${cmd[@]} -e 'using Pkg; Pkg.test([ "RecipesBase", "RecipesPipeline", - "PlotsBase", "PlotThemes", + "PlotsBase", "GraphRecipes", "StatsPlots", "Plots", diff --git a/docs/make.jl b/docs/make.jl index b20bd6a94..34305be45 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -2,10 +2,11 @@ using Pkg Base.get_bool_env("PLOTDOCS_DEV", false) && Pkg.develop([ (; path="../RecipesBase"), (; path="../RecipesPipeline"), + (; path="../PlotThemes"), (; path="../PlotsBase"), - (; path=".."), (; path="../GraphRecipes"), (; path="../StatsPlots"), + (; path=".."), ]) # oneliner debug PLOTDOCS_DEV=1 PLOTDOCS_PACKAGES='GR' PLOTDOCS_EXAMPLES=1 julia --project -e 'include("make.jl")'