Skip to content

Commit 0345234

Browse files
authored
Merge pull request #29 from queryverse/julia-0.7
Julia 0.7
2 parents 8e1de14 + fcd1f26 commit 0345234

File tree

4 files changed

+35
-25
lines changed

4 files changed

+35
-25
lines changed

.travis.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
## Documentation: http://docs.travis-ci.com/user/languages/julia/
21
language: julia
32
os:
43
- linux
@@ -9,10 +8,13 @@ julia:
98
- nightly
109
notifications:
1110
email: false
12-
script:
13-
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
14-
- julia -e 'import Pkg; Pkg.clone(pwd()); Pkg.build("CSVFiles")'
15-
- julia --color=yes --check-bounds=yes -e 'import Pkg; Pkg.test("CSVFiles"; coverage=true)'
11+
branches:
12+
only:
13+
- master
14+
- /release-.*/
15+
- /v(\d+)\.(\d+)\.(\d+)/
16+
matrix:
17+
allow_failures:
18+
- julia: nightly
1619
after_success:
17-
# push coverage results to Codecov
18-
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
20+
- julia -e 'cd(Pkg.dir("CSVFiles")); 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+
# CSVFiles.jl v0.9.1
2+
* Fix remaining julia 1.0 compat issues
3+
14
# CSVFiles.jl v0.9.0
25
* Drop julia 0.6 support, add julia 0.7 support
36

REQUIRE

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
julia 0.7-
1+
julia 0.7
22
TextParse 0.6.0
3-
IteratorInterfaceExtensions 0.1.0
4-
TableTraits 0.3.0
5-
TableTraitsUtils 0.2.0
6-
DataValues 0.4.2
7-
FileIO 1.0.0
8-
HTTP 0.6.0
9-
IterableTables 0.8.1
10-
TableShowUtils 0.1.0
3+
IteratorInterfaceExtensions 0.1.1
4+
TableTraits 0.3.1
5+
TableTraitsUtils 0.2.1
6+
DataValues 0.4.4
7+
FileIO 1.0.1
8+
HTTP 0.6.14
9+
IterableTables 0.8.3
10+
TableShowUtils 0.1.1

appveyor.yml

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
11
environment:
22
matrix:
33
- julia_version: 0.7
4-
- julia_version: 1.0
5-
- julia_version: latest
4+
- julia_version: 1
5+
- julia_version: nightly
66

77
platform:
8-
- x86
9-
- x64
8+
- x86 # 32-bit
9+
- x64 # 64-bit
1010

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

1715
branches:
1816
only:
1917
- master
2018
- /release-.*/
19+
- /v(\d+)\.(\d+)\.(\d+)/
2120

2221
notifications:
2322
- provider: Email
@@ -35,3 +34,9 @@ build_script:
3534
test_script:
3635
- echo "%JL_TEST_SCRIPT%"
3736
- 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)