Skip to content
This repository has been archived by the owner on Jun 22, 2021. It is now read-only.

Commit

Permalink
Merge pull request #51 from alan-turing-institute/dev
Browse files Browse the repository at this point in the history
For a 0.3.2 release
  • Loading branch information
ablaom authored Nov 16, 2020
2 parents 10e2e23 + 8c15b45 commit 67136a7
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 5 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CompatHelper

on:
schedule:
- cron: '00 00 * * *'

jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@latest
with:
version: 1.3
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: julia -e 'using CompatHelper; CompatHelper.main(; master_branch = "dev")'
8 changes: 6 additions & 2 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
issue_comment:
types:
- created
workflow_dispatch:
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MLJScientificTypes"
uuid = "2e2323e0-db8b-457b-ae0d-bdfb3bc63afd"
authors = ["Anthony D. Blaom <[email protected]>"]
version = "0.3.1"
version = "0.3.2"

[deps]
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
Expand All @@ -16,7 +16,7 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
CategoricalArrays = "^0.8"
ColorTypes = "^0.9,^0.10"
PersistenceDiagramsBase = "^0.1"
PrettyTables = "^0.8,^0.9"
PrettyTables = "^0.8,^0.9,^0.10"
ScientificTypes = "^1.0"
Tables = "^1.0"
julia = "1"
Expand Down
2 changes: 1 addition & 1 deletion test/extra_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ if VERSION ≥ v"1.3.0-"
X = Tables.table(ones(1_000, 2))
tmp = tempname()
CSV.write(tmp, X)
data = CSV.DataFrame!(CSV.File(tmp))
data = CSV.read(tmp, DataFrame)
# data.Column1 and data.Column2 are Column2 (as of CSV 5.19)
@test data.Column1 isa AbstractArray{<:AbstractFloat}
dc = coerce(data, autotype(data, :discrete_to_continuous))
Expand Down

0 comments on commit 67136a7

Please sign in to comment.