Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# LACosmic.jl

[![Build Status](https://github.com/JuliaAstro/LACosmic.jl/workflows/CI/badge.svg?branch=main)](https://github.com/JuliaAstro/LACosmic.jl/actions)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliaastro.org/LACosmic/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliaastro.org/LACosmic.jl/dev/)

[![CI](https://github.com/JuliaAstro/LACosmic.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaAstro/LACosmic.jl/actions/workflows/CI.yml)
[![PkgEval](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/L/LACosmic.svg)](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/report.html)
[![Coverage](https://codecov.io/gh/JuliaAstro/LACosmic.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaAstro/LACosmic.jl)
[![codecov](https://codecov.io/gh/JuliaAstro/LACosmic.jl/graph/badge.svg?token=2lJWwb9zoO)](https://codecov.io/gh/JuliaAstro/LACosmic.jl)
[![License](https://img.shields.io/badge/License-BSD-yellow.svg)](https://opensource.org/licenses/BSD-3-Clause)

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaAstro.github.io/LACosmic.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaAstro.github.io/LACosmic.jl/dev)

Laplacian cosmic-ray detection (L.A.Cosmic) in pure Julia.

## Installation
Expand Down
26 changes: 13 additions & 13 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ DocMeta.setdocmeta!(LACosmic, :DocTestSetup, :(using LACosmic); recursive=true)
include("pages.jl")

makedocs(;
modules=[LACosmic],
authors="Miles Lucas <[email protected]> and contributors",
repo=GitHub("JuliaAstro/LACosmic.jl"),
sitename="LACosmic.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://juliaastro.github.io/LACosmic.jl",
assets=String[],
modules = [LACosmic],
authors = "Miles Lucas <[email protected]> and contributors",
repo = GitHub("JuliaAstro/LACosmic.jl"),
sitename = "LACosmic.jl",
format = Documenter.HTML(;
prettyurls = get(ENV, "CI", "false") == "true",
canonical = "https://juliaastro.org/LACosmic/stable/",
),
pages=pages,
checkdocs=:exports,
pages = pages,
checkdocs = :exports,
)

deploydocs(;
repo="github.com/JuliaAstro/LACosmic.jl",
devbranch="main",
push_preview=true
repo = "github.com/JuliaAstro/LACosmic.jl",
devbranch = "main",
push_preview = true,
versions = ["stable" => "v^", "v#.#"], # Restrict to minor releases
)
5 changes: 2 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ CurrentModule = LACosmic

# LACosmic.jl

[![Code](https://img.shields.io/badge/Code-GitHub-black.svg)](https://github.com/JuliaAstro/LACosmic.jl)
[![Build Status](https://github.com/JuliaAstro/LACosmic.jl/workflows/CI/badge.svg?branch=main)](https://github.com/JuliaAstro/LACosmic.jl/actions)
[![CI](https://github.com/JuliaAstro/LACosmic.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaAstro/LACosmic.jl/actions/workflows/CI.yml)
[![PkgEval](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/L/LACosmic.svg)](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/report.html)
[![Coverage](https://codecov.io/gh/JuliaAstro/LACosmic.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaAstro/LACosmic.jl)
[![codecov](https://codecov.io/gh/JuliaAstro/LACosmic.jl/graph/badge.svg?token=2lJWwb9zoO)](https://codecov.io/gh/JuliaAstro/LACosmic.jl)
[![License](https://img.shields.io/badge/License-BSD-yellow.svg)](https://opensource.org/licenses/BSD-3-Clause)

Laplacian cosmic-ray detection (L.A.Cosmic) in pure Julia.
Expand Down
Loading