Skip to content

Commit

Permalink
pin Documenter to 1.6
Browse files Browse the repository at this point in the history
Miha Zgubic committed Jan 21, 2022
1 parent 88f50ae commit 80c69f0
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1'
version: '1.6'
- run: |
julia --project=docs -e '
using Pkg
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@
*.jl.cov
*.jl.*.cov
*.jl.mem
Manifest.toml
# Documenter generated files
/docs/build/
/docs/site/
2 changes: 0 additions & 2 deletions src/validators.jl
Original file line number Diff line number Diff line change
@@ -37,7 +37,6 @@ julia> M = [1.0 2.0 missing missing 5.0; 1.1 2.2 3.3 missing 5.5]
julia> @test_throws ThresholdError validate(M, Threshold())
Test Passed
Expression: validate(M, Threshold())
Thrown: ThresholdError
```
"""
@@ -89,7 +88,6 @@ julia> df = DataFrame(:a => [1.0, 2.0, missing, missing, 5.0], :b => [1.1, 2.2,
julia> @test_throws ThresholdError validate(df, Threshold())
Test Passed
Expression: validate(df, Threshold())
Thrown: ThresholdError
```
"""

0 comments on commit 80c69f0

Please sign in to comment.