Skip to content

Commit

Permalink
Tidy up (#60)
Browse files Browse the repository at this point in the history
* Fix conversion for Matrix and RLEDataFrame

* do not CI on windows

* Documenter dependency for docs/

* fix docs sitename

* do not need to specify HTML doc output
  • Loading branch information
phaverty authored Oct 11, 2022
1 parent a86eb98 commit f258ba4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 12 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ jobs:
- ubuntu-latest
arch:
- x64
include:
- os: windows-latest
version: '1'
arch: x86
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "RLEVectors"
uuid = "17b45ede-fd0d-54ef-b825-8cf9fc64da95"
version = "0.9.8"
version = "0.9.9"

[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Expand Down
3 changes: 0 additions & 3 deletions ci_prep.jl

This file was deleted.

5 changes: 5 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

[compat]
Documenter = "0.27"
7 changes: 4 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using Documenter, RLEVectors

makedocs()
makedocs(
sitename = "RLEVectors"
)

deploydocs(
repo = "github.com/phaverty/RLEVectors.jl.git",
julia = "0.6"
repo = "github.com/phaverty/RLEVectors.jl.git"
)
2 changes: 1 addition & 1 deletion src/RLEDataFrame-type.jl
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ end


## Conversion
Base.convert(Matrix, x::RLEDataFrame) = hcat(map(collect, x.columns)...)
Base.convert(::Type{Matrix}, x::RLEDataFrame) = hcat(map(collect, x.columns)...)

### Familiar operations over rows or columns from R

Expand Down

0 comments on commit f258ba4

Please sign in to comment.