Skip to content

Commit 2db79d8

Browse files
authored
Merge pull request #7 from queryverse/julia-0.7
Julia 0.7
2 parents 1755ea2 + e6b28ea commit 2db79d8

File tree

5 files changed

+43
-29
lines changed

5 files changed

+43
-29
lines changed

.travis.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
1-
## Documentation: http://docs.travis-ci.com/user/languages/julia/
21
language: julia
32
os:
43
- linux
54
- osx
65
julia:
76
- 0.7
7+
- 1.0
88
- nightly
99
notifications:
1010
email: false
11-
git:
12-
depth: 99999999
11+
branches:
12+
only:
13+
- master
14+
- /release-.*/
15+
- /v(\d+)\.(\d+)\.(\d+)/
16+
matrix:
17+
allow_failures:
18+
- julia: nightly
1319
after_success:
14-
# push coverage results to Codecov
1520
- julia -e 'cd(Pkg.dir("StatFiles")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# StatFiles.jl v0.6.1
2+
* Fix remaining julia 0.7/1.0 issues
3+
14
# StatFiles.jl v0.6.0
25
* Drop julia 0.6 support, add julia 0.7 support
36

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# StatFiles
22

33
[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
4-
[![Build Status](https://travis-ci.org/davidanthoff/StatFiles.jl.svg?branch=master)](https://travis-ci.org/davidanthoff/StatFiles.jl)
5-
[![Build status](https://ci.appveyor.com/api/projects/status/816985qre56lkgpf/branch/master?svg=true)](https://ci.appveyor.com/project/davidanthoff/statfiles-jl/branch/master)
4+
[![Build Status](https://travis-ci.org/queryverse/StatFiles.jl.svg?branch=master)](https://travis-ci.org/queryverse/StatFiles.jl)
5+
[![Build status](https://ci.appveyor.com/api/projects/status/lx7qmion1a8dggls/branch/master?svg=true)](https://ci.appveyor.com/project/queryverse/statfiles-jl/branch/master)
66
[![StatFiles](http://pkg.julialang.org/badges/StatFiles_0.6.svg)](http://pkg.julialang.org/?pkg=StatFiles)
7-
[![codecov.io](http://codecov.io/github/davidanthoff/StatFiles.jl/coverage.svg?branch=master)](http://codecov.io/github/davidanthoff/StatFiles.jl?branch=master)
7+
[![codecov.io](http://codecov.io/github/queryverse/StatFiles.jl/coverage.svg?branch=master)](http://codecov.io/github/queryverse/StatFiles.jl?branch=master)
88

99
## Overview
1010

@@ -27,7 +27,7 @@ using StatFiles, DataFrames
2727
df = DataFrame(load("data.dta"))
2828
````
2929

30-
The call to ``load`` returns a ``struct`` that is an [IterableTable.jl](https://github.com/davidanthoff/IterableTables.jl), so it can be passed to any function that can handle iterable tables, i.e. all the sinks in [IterableTable.jl](https://github.com/davidanthoff/IterableTables.jl). Here are some examples of materializing a Stata, SPSS, or SAS file into data structures that are not a ``DataFrame``:
30+
The call to ``load`` returns a ``struct`` that is an [IterableTable.jl](https://github.com/queryverse/IterableTables.jl), so it can be passed to any function that can handle iterable tables, i.e. all the sinks in [IterableTable.jl](https://github.com/queryverse/IterableTables.jl). Here are some examples of materializing a Stata, SPSS, or SAS file into data structures that are not a ``DataFrame``:
3131

3232
````julia
3333
using StatFiles, DataTables, IndexedTables, TimeSeries, Temporal, Gadfly
@@ -58,4 +58,4 @@ using StatFiles, DataFrame
5858
df = load("data.dta") |> DataFrame
5959
````
6060

61-
The pipe syntax is especially useful when combining it with [Query.jl](https://github.com/davidanthoff/Query.jl) queries, for example one can easily load a Stata, SPSS, or SAS file, pipe it into a query, then pipe it to the ``save`` function to store the results in a new file.
61+
The pipe syntax is especially useful when combining it with [Query.jl](https://github.com/queryverse/Query.jl) queries, for example one can easily load a Stata, SPSS, or SAS file, pipe it into a query, then pipe it to the ``save`` function to store the results in a new file.

REQUIRE

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
julia 0.7-
2-
TableTraits 0.3.0
3-
ReadStat 0.4.0
4-
IterableTables 0.8.0
5-
DataValues 0.4.1
6-
FileIO
7-
TableTraitsUtils 0.2.0
8-
IteratorInterfaceExtensions 0.1.0
9-
TableShowUtils 0.1.0
1+
julia 0.7
2+
TableTraits 0.3.1
3+
ReadStat 0.4.1
4+
IterableTables 0.8.3
5+
DataValues 0.4.4
6+
FileIO 1.0.0
7+
TableTraitsUtils 0.2.1
8+
IteratorInterfaceExtensions 0.1.1
9+
TableShowUtils 0.1.1

appveyor.yml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
environment:
22
matrix:
33
- julia_version: 0.7
4-
- julia_version: latest
4+
- julia_version: 1
5+
- julia_version: nightly
56

67
platform:
7-
- x86
8-
- x64
8+
- x86 # 32-bit
9+
- x64 # 64-bit
910

10-
## uncomment the following lines to allow failures on nightly julia
11-
## (tests will run but not make your overall status red)
12-
#matrix:
13-
# allow_failures:
14-
# - julia_version: latest
11+
matrix:
12+
allow_failures:
13+
- julia_version: latest
1514

1615
branches:
1716
only:
1817
- master
1918
- /release-.*/
19+
- /v(\d+)\.(\d+)\.(\d+)/
2020

2121
notifications:
2222
- provider: Email
@@ -25,12 +25,18 @@ notifications:
2525
on_build_status_changed: false
2626

2727
install:
28-
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/master/bin/install.ps1'))
28+
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
2929

3030
build_script:
3131
- echo "%JL_BUILD_SCRIPT%"
32-
- julia -e "%JL_BUILD_SCRIPT%"
32+
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
3333

3434
test_script:
3535
- echo "%JL_TEST_SCRIPT%"
36-
- julia -e "%JL_TEST_SCRIPT%"
36+
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
37+
38+
# # Uncomment to support code coverage upload. Should only be enabled for packages
39+
# # which would have coverage gaps without running on Windows
40+
# on_success:
41+
# - echo "%JL_CODECOV_SCRIPT%"
42+
# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"

0 commit comments

Comments
 (0)