-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
Co-authored-by: Valentin Churavy <[email protected]>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,21 @@ | ||
name = "Atomix" | ||
uuid = "a9b6321e-bd34-4604-b9c9-b65b8de01458" | ||
authors = ["Takafumi Arakaki <[email protected]> and contributors"] | ||
version = "1.0" | ||
version = "0.2.0" | ||
|
||
[deps] | ||
UnsafeAtomics = "013be700-e6cd-48c3-b4a1-df204f14c38f" | ||
|
||
[compat] | ||
CUDA = "5" | ||
Metal = "1" | ||
UnsafeAtomics = "0.1, 0.2" | ||
julia = "1.6" | ||
julia = "1.10" | ||
|
||
[extensions] | ||
AtomixCUDAExt = "CUDA" | ||
AtomixMetalExt = "Metal" | ||
|
||
[weakdeps] | ||
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" | ||
Metal = "dde4c033-4e86-420c-a63e-0dd931031962" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
[deps] | ||
Atomix = "a9b6321e-bd34-4604-b9c9-b65b8de01458" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
|
||
[compat] | ||
Documenter = "1.7" | ||
Documenter = "1" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
using Documenter | ||
using Atomix | ||
|
||
makedocs( | ||
sitename = "Atomix", | ||
modules = [Atomix], | ||
warnonly = :missing_docs | ||
makedocs(; | ||
sitename="Atomix", | ||
modules=[Atomix], | ||
format=Documenter.HTML(; | ||
# Only create web pretty-URLs on the CI | ||
prettyurls=get(ENV, "CI", nothing) == "true", | ||
), | ||
warnonly=:missing_docs, | ||
) | ||
|
||
deploydocs( | ||
repo = "github.com/JuliaConcurrent/Atomix.jl", | ||
devbranch = "main", | ||
push_preview = true, | ||
repo="github.com/JuliaConcurrent/Atomix.jl", | ||
devbranch="main", | ||
push_preview=true, | ||
) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Activate docs environment and use ("develop") local library | ||
using Pkg | ||
Pkg.activate(@__DIR__) | ||
Pkg.develop(path=joinpath(@__DIR__, "..")) | ||
include("make.jl") |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.