Skip to content

Commit 5d3c116

Browse files
Merge branch 'main' into ChrisRackauckas-patch-1
2 parents 9e9ca02 + 1a7480d commit 5d3c116

File tree

3 files changed

+37
-32
lines changed

3 files changed

+37
-32
lines changed

.github/workflows/CI.yml

Lines changed: 28 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
version:
14-
- '1.9'
14+
- '1'
15+
- '~1.10.0-0'
1516
os:
1617
- ubuntu-latest
1718
threads:
@@ -43,28 +44,29 @@ jobs:
4344
- uses: codecov/codecov-action@v3
4445
with:
4546
file: lcov.info
46-
docs:
47-
name: Documentation
48-
runs-on: ubuntu-latest
49-
steps:
50-
- uses: actions/checkout@v4
51-
- uses: julia-actions/setup-julia@v1
52-
with:
53-
version: '1'
54-
- run: |
55-
julia --project=docs -e '
56-
using Pkg
57-
Pkg.develop(PackageSpec(path=pwd()))
58-
Pkg.instantiate()'
59-
env:
60-
JULIA_PKG_SERVER: ""
61-
- run: |
62-
julia --project=docs -e '
63-
using Documenter: DocMeta, doctest
64-
using Polyester
65-
DocMeta.setdocmeta!(Polyester, :DocTestSetup, :(using Polyester); recursive=true)
66-
doctest(Polyester)'
67-
- run: julia --project=docs docs/make.jl
68-
env:
69-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
70-
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
47+
48+
# docs:
49+
# name: Documentation
50+
# runs-on: ubuntu-latest
51+
# steps:
52+
# - uses: actions/checkout@v4
53+
# - uses: julia-actions/setup-julia@v1
54+
# with:
55+
# version: '1'
56+
# - run: |
57+
# julia --project=docs -e '
58+
# using Pkg
59+
# Pkg.develop(PackageSpec(path=pwd()))
60+
# Pkg.instantiate()'
61+
# env:
62+
# JULIA_PKG_SERVER: ""
63+
# - run: |
64+
# julia --project=docs -e '
65+
# using Documenter: DocMeta, doctest
66+
# using Polyester
67+
# DocMeta.setdocmeta!(Polyester, :DocTestSetup, :(using Polyester); recursive=true)
68+
# doctest(Polyester)'
69+
# - run: julia --project=docs docs/make.jl
70+
# env:
71+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
72+
# DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

Project.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PolyesterForwardDiff"
22
uuid = "98d1487c-24ca-40b6-b7ab-df2af84e126b"
33
authors = ["The Chrises"]
4-
version = "0.1.0"
4+
version = "0.1.1"
55

66
[deps]
77
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
@@ -14,6 +14,8 @@ julia = "1.9"
1414

1515
[extras]
1616
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
17+
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
18+
Polyester = "f517fe37-dbe3-4b94-8317-1923a5111588"
1719

1820
[targets]
19-
test = ["Test"]
21+
test = ["Test", "Polyester", "ForwardDiff"]

docs/make.jl

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
using PolyesterForwardDiff
22
using Documenter
33

4-
DocMeta.setdocmeta!(Polyester, :DocTestSetup, :(using PolyesterForwardDiff); recursive=true)
4+
DocMeta.setdocmeta!(PolyesterForwardDiff, :DocTestSetup,
5+
:(using PolyesterForwardDiff); recursive=true)
56

67
makedocs(;
78
modules=[PolyesterForwardDiff],
89
authors="Chris Elrod <[email protected]> and contributors",
9-
repo="https://github.com/JuliaSIMD/PolyesterForwardDiff.jl/blob/{commit}{path}#{line}",
10+
repo="https://github.com/JuliaDiff/PolyesterForwardDiff.jl/blob/{commit}{path}#{line}",
1011
sitename="PolyesterForwardDiff.jl",
1112
format=Documenter.HTML(;
1213
prettyurls=get(ENV, "CI", "false") == "true",
13-
canonical="https://JuliaSIMD.github.io/PolyesterForwardDiff.jl",
14+
canonical="https://juliadiff.org/PolyesterForwardDiff.jl",
1415
assets=String[],
1516
),
1617
pages=[
@@ -19,5 +20,5 @@ makedocs(;
1920
)
2021

2122
deploydocs(;
22-
repo="github.com/JuliaSIMD/PolyesterForwardDiff.jl",
23+
repo="github.com/JuliaDiff/PolyesterForwardDiff.jl",
2324
)

0 commit comments

Comments
 (0)