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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# CFITSIO.jl

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

[![CI](https://github.com/JuliaAstro/CFITSIO.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/JuliaAstro/CFITSIO.jl/actions/workflows/ci.yml)
[![PkgEval](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/C/CFITSIO.svg)](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/report.html)
[![Coverage](https://codecov.io/gh/JuliaAstro/CFITSIO.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaAstro/CFITSIO.jl)

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

## C-style interface to CFITSIO functions

- Function names closely mirror the C interface (e.g., `fits_open_file()`).
Expand Down
23 changes: 13 additions & 10 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
using CFITSIO
using Documenter
using Documenter.Remotes: GitHub

DocMeta.setdocmeta!(CFITSIO, :DocTestSetup, :(using CFITSIO); recursive=true)

include("pages.jl")

makedocs(;
modules=[CFITSIO],
authors="JuliaAstro",
repo=GitHub("JuliaAstro/CFITSIO.jl"),
sitename="CFITSIO.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://juliaastro.github.io/CFITSIO.jl",
assets=String[],
modules = [CFITSIO],
authors = "JuliaAstro",
repo = GitHub("JuliaAstro/CFITSIO.jl"),
sitename = "CFITSIO.jl",
format = Documenter.HTML(;
prettyurls = get(ENV, "CI", "false") == "true",
canonical = "https://juliaastro.org/CFITSIO/stable/",
assets = String[],
),
pages=pages
pages = pages,
)

deploydocs(;
repo="github.com/JuliaAstro/CFITSIO.jl",
repo = "github.com/JuliaAstro/CFITSIO.jl",
versions = ["stable" => "v^", "v#.#"], # Restrict to minor releases
)
Loading