Skip to content

Commit 36d24be

Browse files
authored
Merge branch 'master' into gamma-fix
2 parents 8d37a34 + 92be507 commit 36d24be

28 files changed

+942
-685
lines changed

.drone.jsonnet

Lines changed: 0 additions & 30 deletions
This file was deleted.

.drone.yml

Lines changed: 0 additions & 81 deletions
This file was deleted.

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/TagBot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ on:
44
types:
55
- created
66
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: 3
10+
permissions:
11+
actions: read
12+
checks: read
13+
contents: write
14+
deployments: read
15+
issues: read
16+
discussions: read
17+
packages: read
18+
pages: read
19+
pull-requests: read
20+
repository-projects: read
21+
security-events: read
22+
statuses: read
723
jobs:
824
TagBot:
925
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
@@ -12,4 +28,6 @@ jobs:
1228
- uses: JuliaRegistries/TagBot@v1
1329
with:
1430
token: ${{ secrets.GITHUB_TOKEN }}
31+
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
1532
ssh: ${{ secrets.DOCUMENTER_KEY }}
33+
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}

.github/workflows/ci.yml

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,38 +14,46 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
version:
17-
- "1.5"
18-
- "1"
19-
- "nightly"
17+
- '1.6'
18+
- '1'
2019
os:
2120
- ubuntu-latest
22-
- macOS-latest
2321
- windows-latest
2422
arch:
2523
- x64
24+
include:
25+
- os: macOS-13
26+
arch: x64
27+
version: 1
28+
- os: macOS-latest
29+
arch: aarch64
30+
version: 1
31+
2632
steps:
27-
- uses: actions/checkout@v3
28-
- uses: julia-actions/setup-julia@v1
33+
- uses: actions/checkout@v4
34+
- uses: julia-actions/setup-julia@v2
2935
with:
3036
version: ${{ matrix.version }}
3137
arch: ${{ matrix.arch }}
32-
- uses: julia-actions/cache@v1
38+
- uses: julia-actions/cache@v2
3339
- uses: julia-actions/julia-buildpkg@v1
3440
- uses: julia-actions/julia-runtest@v1
3541
continue-on-error: ${{ matrix.version == 'nightly' }}
3642
- uses: julia-actions/julia-processcoverage@v1
3743
continue-on-error: true
38-
- uses: codecov/codecov-action@v3
44+
- uses: codecov/codecov-action@v4
3945
continue-on-error: true
4046
with:
47+
token: ${{ secrets.CODECOV_TOKEN }} # required
48+
fail_ci_if_error: true
4149
file: ./lcov.info
4250
flags: unittests
4351
docs:
4452
name: Documentation
4553
runs-on: ubuntu-latest
4654
steps:
47-
- uses: actions/checkout@v3
48-
- uses: julia-actions/setup-julia@v1
55+
- uses: actions/checkout@v4
56+
- uses: julia-actions/setup-julia@v2
4957
with:
5058
version: "1"
5159
- uses: julia-actions/julia-docdeploy@releases/v1

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "SpecialFunctions"
22
uuid = "276daf66-3868-5448-9aa4-cd146d93841b"
3-
version = "2.2.0"
3+
version = "2.4.0"
44

55
[deps]
66
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SpecialFunctions.jl
22

3-
Special mathematical functions in Julia, including Bessel, Hankel, Airy, error, Dawson, exponential (or sine and cosine) integrals,
3+
Special mathematical functions in Julia, include Bessel, Hankel, Airy, error, Dawson, exponential (or sine and cosine) integrals,
44
eta, zeta, digamma, inverse digamma, trigamma, and polygamma functions.
55
Most of these functions were formerly part of Base in early versions of Julia.
66

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
44

55
[compat]
6-
Documenter = "~0.24"
6+
Documenter = "~0.27"

docs/make.jl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
using SpecialFunctions, Documenter
22

3+
# `using SpecialFunctions` for all doctests
4+
DocMeta.setdocmeta!(SpecialFunctions, :DocTestSetup, :(using SpecialFunctions); recursive=true)
35
makedocs(modules=[SpecialFunctions],
46
sitename="SpecialFunctions.jl",
57
authors="Jeff Bezanson, Stefan Karpinski, Viral B. Shah, et al.",
8+
format = Documenter.HTML(; assets = String[]),
69
pages=["Home" => "index.md",
710
"Overview" => "functions_overview.md",
8-
"List" => "functions_list.md"])
11+
"Reference" => "functions_list.md"],
12+
#warnonly=[:missing_docs],
13+
)
914

1015
deploydocs(repo="github.com/JuliaMath/SpecialFunctions.jl.git")

0 commit comments

Comments
 (0)