diff --git a/README.md b/README.md index 926ea43..078d2ac 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # ExprTools -[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://invenia.github.io/ExprTools.jl/stable) -[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://invenia.github.io/ExprTools.jl/dev) -[![CI](https://github.com/Invenia/ExprTools.jl/workflows/CI/badge.svg)](https://github.com/Invenia/ExprTools.jl/actions?query=workflow%3ACI) -[![Coverage](https://codecov.io/gh/invenia/ExprTools.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/invenia/ExprTools.jl) +[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaTesting.github.io/ExprTools.jl/stable) +[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaTesting.github.io/ExprTools.jl/dev) +[![CI](https://github.com/JuliaTesting/ExprTools.jl/workflows/CI/badge.svg)](https://github.com/JuliaTesting/ExprTools.jl/actions?query=workflow%3ACI) +[![Coverage](https://codecov.io/gh/JuliaTesting/ExprTools.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaTesting/ExprTools.jl) ExprTools provides tooling for working with Julia expressions during [metaprogramming](https://docs.julialang.org/en/v1/manual/metaprogramming/). This package aims to provide light-weight performant tooling without requiring additional package dependencies. diff --git a/docs/make.jl b/docs/make.jl index 9ae9bc0..7c99b81 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -4,11 +4,11 @@ using Documenter makedocs(; modules=[ExprTools], authors="Curtis Vogt ", - repo="https://github.com/invenia/ExprTools.jl/blob/{commit}{path}#L{line}", + repo="https://github.com/JuliaTesting/ExprTools.jl/blob/{commit}{path}#L{line}", sitename="ExprTools.jl", format=Documenter.HTML(; prettyurls=get(ENV, "CI", "false") == "true", - canonical="https://invenia.github.io/ExprTools.jl", + canonical="https://JuliaTesting.github.io/ExprTools.jl", assets=String[], ), pages=[ @@ -18,5 +18,5 @@ makedocs(; ) deploydocs(; - repo="github.com/invenia/ExprTools.jl", + repo="github.com/JuliaTesting/ExprTools.jl", ) diff --git a/src/method.jl b/src/method.jl index 90fa152..75023e1 100644 --- a/src/method.jl +++ b/src/method.jl @@ -243,7 +243,7 @@ function kwargs(m::Method) names = kwarg_names(m) isempty(names) && return nothing # we know it has no keywords. # TODO: Enhance this to support more than just their names - # see https://github.com/invenia/ExprTools.jl/issues/6 + # see https://github.com/JuliaTesting/ExprTools.jl/issues/6 return names end diff --git a/test/method.jl b/test/method.jl index 37d92e2..996928f 100644 --- a/test/method.jl +++ b/test/method.jl @@ -23,7 +23,7 @@ function test_matches(candidate::AbstractDict, target::Dict) haskey(target, :kwargs) && @test target[:kwargs] == get(candidate, :kwargs, nothing) # TODO: support return value declaration in signature - # See https://github.com/invenia/ExprTools.jl/issues/5 + # See https://github.com/JuliaTesting/ExprTools.jl/issues/5 haskey(target, :rtype) && @test_broken target[:rtype] == get(candidate, :rtype, nothing) return nothing end @@ -213,7 +213,7 @@ struct TestCallableStruct end end # Only test on 1.3 because of issues with declaring structs in 1.0-1.2 - # TODO: https://github.com/invenia/ExprTools.jl/issues/7 + # TODO: https://github.com/JuliaTesting/ExprTools.jl/issues/7 VERSION >= v"1.3" && @eval @testset "Constructors (basic)" begin # demo type for testing on struct NoParamStruct @@ -247,7 +247,7 @@ struct TestCallableStruct end end # Only test on 1.3 because of issues with declaring structs in 1.0-1.2 - # TODO: https://github.com/invenia/ExprTools.jl/issues/7 + # TODO: https://github.com/JuliaTesting/ExprTools.jl/issues/7 VERSION >= v"1.3" && @eval @testset "params (via Constructors with type params)" begin struct OneParamStruct{T} x::T diff --git a/test/type_utils.jl b/test/type_utils.jl index c0344b9..af69814 100644 --- a/test/type_utils.jl +++ b/test/type_utils.jl @@ -63,7 +63,7 @@ @test s.lb == Union{} @test s.ub == Any - # https://github.com/invenia/ExprTools.jl/issues/39 + # https://github.com/JuliaTesting/ExprTools.jl/issues/39 @testset "#39" begin s = signature(Tuple{Type{T},T} where {T<:Number}) @test only(s[:whereparams]).args[1] == :T