Skip to content

Commit 4095d1f

Browse files
authored
Merge pull request #73 from JuliaAstro/icweaver-canonize
Canonize
2 parents 396c58c + 890e9df commit 4095d1f

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Photometry.jl
22

3-
[![Build Status](https://github.com/JuliaAstro/Photometry.jl/workflows/CI/badge.svg?branch=main)](https://github.com/JuliaAstro/Photometry.jl/actions)
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliaastro.org/Photometry/stable)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliaastro.org/Photometry.jl/dev)
5+
6+
[![CI](https://github.com/JuliaAstro/Photometry.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/JuliaAstro/Photometry.jl/actions/workflows/ci.yml)
47
[![PkgEval](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/P/Photometry.svg)](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/report.html)
5-
[![Coverage](https://codecov.io/gh/JuliaAstro/Photometry.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaAstro/Photometry.jl)
8+
[![codecov](https://codecov.io/gh/JuliaAstro/Photometry.jl/graph/badge.svg?token=lqTjxxg5dg)](https://codecov.io/gh/JuliaAstro/Photometry.jl)
69
[![License](https://img.shields.io/badge/License-BSD%203--Clause-orange.svg)](https://opensource.org/licenses/BSD-3-Clause)
710

8-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaAstro.github.io/Photometry.jl/stable)
9-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaAstro.github.io/Photometry.jl/dev)
10-
1111
This is a package for performing astronomical photometry using modern and efficient algorithms.
1212

1313
Inspired by [photutils](https://github.com/astropy/photutils), [SEP](https://github.com/kbarbary/sep), and [AperturePhotometry.jl](https://github.com/kbarbary/AperturePhotometry.jl).

docs/make.jl

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,25 @@ setup = quote
77
using Random
88
Random.seed!(123456)
99
end
10+
1011
DocMeta.setdocmeta!(Photometry, :DocTestSetup, setup; recursive = true)
1112

1213
include("pages.jl")
13-
makedocs(
14+
15+
makedocs(;
1416
modules = [Photometry],
1517
authors = "Miles Lucas <[email protected]>",
1618
repo = GitHub("JuliaAstro/Photometry.jl"),
1719
sitename = "Photometry.jl",
1820
format = Documenter.HTML(;
1921
prettyurls = get(ENV, "CI", "false") == "true",
20-
canonical = "https://juliaastro.github.io/Photometry.jl",
22+
canonical = "https://juliaastro.org/Photometry/stable/",
2123
),
2224
pages = pages,
2325
)
2426

25-
deploydocs(
27+
deploydocs(;
2628
repo = "github.com/JuliaAstro/Photometry.jl",
2729
push_preview = true,
30+
versions = ["stable" => "v^", "v#.#"], # Restrict to minor releases
2831
)

docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ DocTestSetup = :(using Photometry)
66
# Photometry.jl
77

88
[![GitHub](https://img.shields.io/badge/Code-GitHub-black.svg)](https://github.com/juliaastro/Photometry.jl)
9-
[![Build Status](https://github.com/JuliaAstro/Photometry.jl/workflows/CI/badge.svg?branch=main)](https://github.com/JuliaAstro/Photometry.jl/actions)
10-
[![Coverage](https://codecov.io/gh/JuliaAstro/Photometry.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaAstro/Photometry.jl)
9+
[![CI](https://github.com/JuliaAstro/Photometry.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/JuliaAstro/Photometry.jl/actions/workflows/ci.yml)
10+
[![codecov](https://codecov.io/gh/JuliaAstro/Photometry.jl/graph/badge.svg?token=lqTjxxg5dg)](https://codecov.io/gh/JuliaAstro/Photometry.jl)
1111
[![License](https://img.shields.io/badge/License-BSD%203--Clause-orange.svg)](https://opensource.org/licenses/BSD-3-Clause)
1212

1313
## Installation

0 commit comments

Comments
 (0)