BazerData.jl

Data manipulation utilities for Julia
Log | Files | Refs | README | LICENSE

commit 5faeb3e704b567c33dd3eef7c43492095f8b855a
parent 9b054ace04a8aa21364bde899385112e8c6af2e5
Author: Erik Loualiche <[email protected]>
Date:   Tue, 20 May 2025 13:58:24 -0500

try to fix doc to serve in correct folder

Diffstat:
M.github/workflows/CI.yml | 1-
MREADME.md | 3++-
Mdocs/make.jl | 7+++++++
3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml @@ -18,7 +18,6 @@ jobs: fail-fast: false matrix: version: - - '1.10' - '1.11' - 'nightly' os: diff --git a/README.md b/README.md @@ -2,7 +2,8 @@ [![CI](https://github.com/eloualiche/BazerData.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/eloualiche/BazerData.jl/actions/workflows/CI.yml) [![Lifecycle:Experimental](https://img.shields.io/badge/Lifecycle-Experimental-339999)](https://github.com/eloualiche/BazerData.jl/actions/workflows/CI.yml) -[![codecov](https://codecov.io/gh/eloualiche/BazerData.jl/graph/badge.svg?token=53QO3HSSRT)](https://codecov.io/gh/eloualiche/BazerData.jl) +[![codecov](https://codecov.io/gh/eloualiche/BazerData.jl/graph/badge.svg?token=6TOSLA6XY9)](https://codecov.io/gh/eloualiche/BazerData.jl) + `BazerData.jl` is a placeholder package for some functions that I use in julia frequently. diff --git a/docs/make.jl b/docs/make.jl @@ -15,11 +15,17 @@ makedocs( # format = Documenter.HTML(), format = MarkdownVitepress( repo = "https://github.com/eloualiche/BazerData.jl", + devurl = "dev", + devbranch = "build", + deploy_url = "eloualiche.github.io/BazerData.jl", + description = "BazerData.jl", ), repo = Remotes.GitHub("eloualiche", "BazerData.jl"), sitename = "BazerData.jl", modules = [BazerData], authors = "Erik Loualiche", + version = "0.7.1", + # version = "dev", pages=[ "Home" => "index.md", "Manual" => [ @@ -43,6 +49,7 @@ deploydocs(; devbranch = "main", branch = "gh-pages", push_preview = true, + # versions = ["dev"] # This specifies which versions to deploy )