Skip to content

Commit

Permalink
Update for v1.1, drop support for Julia v0.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones committed Feb 5, 2019
1 parent 45fa89d commit 176482b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ os:
- linux
- osx
julia:
- 0.6
- 0.7
- 1.0
- 1.1
- nightly
notifications:
email: false
Expand All @@ -28,8 +27,7 @@ matrix:
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi

## uncomment the following lines to override the default test script
#script:
# - julia -e 'if VERSION < v"0.7.0-DEV.5183" ; Pkg.clone(pwd()) ; else; Pkg.up(); end ; Pkg.test("MurmurHash3"; coverage=true)'

after_success:
# push coverage results to Coveralls & CodeCov
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("MurmurHash3")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
- julia -e 'using Pkg; cd(Pkg.dir("MurmurHash3")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
8 changes: 7 additions & 1 deletion Project.save → Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ keywords = ["Strings", "Hashing"]
license = "MIT"
name = "MurmurHash3"
uuid = "b10b62ed-fbae-5ea5-b934-abaf0477b71d"
version = "0.2.0"

[deps]
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]

2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
julia 0.6
julia 1 2-
4 changes: 1 addition & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
environment:
matrix:
- julia_version: 0.6
- julia_version: 0.7
- julia_version: 1.0
- julia_version: 1.1
- julia_version: latest

platform:
Expand All @@ -13,7 +12,6 @@ platform:
## (tests will run but not make your overall status red)
matrix:
allow_failures:
- julia_version: 1.0
- julia_version: latest

branches:
Expand Down

0 comments on commit 176482b

Please sign in to comment.