Skip to content

Commit e6b95d4

Browse files
Stephan SahmStephan Sahm
authored andcommitted
taken out dependency to IsDef
1 parent ece4fea commit e6b95d4

5 files changed

Lines changed: 1 addition & 16 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@ jobs:
4040
- uses: codecov/codecov-action@v1
4141
with:
4242
file: lcov.info
43-
- run: |
44-
julia --project=docs -e '
45-
using Pkg
46-
pkg"registry add https://github.com/JuliaRegistries/General"
47-
pkg"registry add https://github.com/schlichtanders/SchlichtandersJuliaRegistry.jl"
4843
'
4944
docs:
5045
name: Documentation
@@ -54,12 +49,6 @@ jobs:
5449
- uses: julia-actions/setup-julia@v1
5550
with:
5651
version: '1'
57-
- run: |
58-
julia --project=docs -e '
59-
using Pkg
60-
pkg"registry add https://github.com/JuliaRegistries/General"
61-
pkg"registry add https://github.com/schlichtanders/SchlichtandersJuliaRegistry.jl"
62-
'
6352
- run: |
6453
julia --project=docs -e '
6554
using Pkg

Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@ version = "1.0.0"
55

66
[deps]
77
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
8-
IsDef = "2704c575-34db-4e2b-9135-fc0075949e5a"
98

109
[compat]
1110
Compat = "2.1, 3"
12-
IsDef = "1"
1311
julia = "1"
1412

1513
[extras]

src/ContextManager.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Base.run(c::ContextManager) = c(identity)
3636

3737

3838
function Base.eltype(::Type{<:ContextManager{F}}) where F
39-
Out(apply, F, typeof(identity))
39+
Base.promote_op((f, arg) -> f(arg), F, typeof(identity))
4040
end
4141
Base.eltype(::Type{<:ContextManager}) = Any
4242

src/DataTypesBasic.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ export Const, Identity,
3737
ContextManager, @ContextManager
3838

3939
using Compat
40-
using IsDef
4140

4241
# type definitions
4342
include("Nothing.jl")

test/ContextManager.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using DataTypesBasic
2-
using IsDef
32
using Test
43

54

0 commit comments

Comments
 (0)