File tree Expand file tree Collapse file tree 2 files changed +17
-14
lines changed Expand file tree Collapse file tree 2 files changed +17
-14
lines changed Original file line number Diff line number Diff line change 1
1
# CFITSIO.jl
2
2
3
- [ ![ Build Status] ( https://github.com/JuliaAstro/CFITSIO.jl/workflows/CI/badge.svg )] ( https://github.com/JuliaAstro/CFITSIO.jl/actions )
3
+ [ ![ Stable] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://JuliaAstro.org/CFITSIO/stable )
4
+ [ ![ Dev] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://JuliaAstro.org/CFITSIO.jl/dev )
5
+
6
+ [ ![ CI] ( https://github.com/JuliaAstro/CFITSIO.jl/actions/workflows/ci.yml/badge.svg )] ( https://github.com/JuliaAstro/CFITSIO.jl/actions/workflows/ci.yml )
4
7
[ ![ PkgEval] ( https://juliaci.github.io/NanosoldierReports/pkgeval_badges/C/CFITSIO.svg )] ( https://juliaci.github.io/NanosoldierReports/pkgeval_badges/report.html )
5
8
[ ![ Coverage] ( https://codecov.io/gh/JuliaAstro/CFITSIO.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/JuliaAstro/CFITSIO.jl )
6
9
7
- [ ![ Stable] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://JuliaAstro.github.io/CFITSIO.jl/stable )
8
- [ ![ Dev] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://JuliaAstro.github.io/CFITSIO.jl/dev )
9
-
10
10
## C-style interface to CFITSIO functions
11
11
12
12
- Function names closely mirror the C interface (e.g., ` fits_open_file() ` ).
Original file line number Diff line number Diff line change 1
1
using CFITSIO
2
2
using Documenter
3
3
using Documenter. Remotes: GitHub
4
+
4
5
DocMeta. setdocmeta! (CFITSIO, :DocTestSetup , :(using CFITSIO); recursive= true )
5
6
6
7
include (" pages.jl" )
8
+
7
9
makedocs (;
8
- modules= [CFITSIO],
9
- authors= " JuliaAstro" ,
10
- repo= GitHub (" JuliaAstro/CFITSIO.jl" ),
11
- sitename= " CFITSIO.jl" ,
12
- format= Documenter. HTML (;
13
- prettyurls= get (ENV , " CI" , " false" ) == " true" ,
14
- canonical= " https://juliaastro.github.io /CFITSIO.jl " ,
15
- assets= String[],
10
+ modules = [CFITSIO],
11
+ authors = " JuliaAstro" ,
12
+ repo = GitHub (" JuliaAstro/CFITSIO.jl" ),
13
+ sitename = " CFITSIO.jl" ,
14
+ format = Documenter. HTML (;
15
+ prettyurls = get (ENV , " CI" , " false" ) == " true" ,
16
+ canonical = " https://juliaastro.org /CFITSIO/stable/ " ,
17
+ assets = String[],
16
18
),
17
- pages= pages
19
+ pages = pages,
18
20
)
19
21
20
22
deploydocs (;
21
- repo= " github.com/JuliaAstro/CFITSIO.jl" ,
23
+ repo = " github.com/JuliaAstro/CFITSIO.jl" ,
24
+ versions = [" stable" => " v^" , " v#.#" ], # Restrict to minor releases
22
25
)
You can’t perform that action at this time.
0 commit comments