Skip to content

Commit

Permalink
Name change
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Oct 22, 2016
1 parent 248522b commit f57d518
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -11,9 +11,9 @@ notifications:
# uncomment the following lines to override the default test script
#script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia -e 'Pkg.clone(pwd()); Pkg.build("DifferentialEquationsBase"); Pkg.test("DifferentialEquationsBase"; coverage=true)'
# - julia -e 'Pkg.clone(pwd()); Pkg.build("DiffEqBase"); Pkg.test("DiffEqBase"; coverage=true)'
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("DifferentialEquationsBase")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'cd(Pkg.dir("DiffEqBase")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("DifferentialEquationsBase")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e 'cd(Pkg.dir("DiffEqBase")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
2 changes: 1 addition & 1 deletion LICENSE.md
@@ -1,4 +1,4 @@
The DifferentialEquationsBase.jl package is licensed under the MIT "Expat" License:
The DiffEqBase.jl package is licensed under the MIT "Expat" License:

> Copyright (c) 2016: ChrisRackauckas.
>
Expand Down
3 changes: 2 additions & 1 deletion README.md
@@ -1,9 +1,10 @@
# DiffEqBase.jl

[![Join the chat at https://gitter.im/JuliaDiffEq/Lobby](https://badges.gitter.im/JuliaDiffEq/Lobby.svg)](https://gitter.im/JuliaDiffEq/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Build Status](https://travis-ci.org/JuliaDiffEq/DiffEqBase.jl.svg?branch=master)](https://travis-ci.org/JuliaDiffEq/DiffEqBase.jl)
[![Build status](https://ci.appveyor.com/api/projects/status/f480ahs29c85m6ne?svg=true)](https://ci.appveyor.com/project/ChrisRackauckas/diffeqbase-jl-3yke2)
[![Coverage Status](https://coveralls.io/repos/github/JuliaDiffEq/DiffEqBase.jl/badge.svg)](https://coveralls.io/github/JuliaDiffEq/DiffEqBase.jl)
[![codecov.io](http://codecov.io/github/ChrisRackauckas/DifferentialEquationsBase.jl/coverage.svg?branch=master)](http://codecov.io/github/ChrisRackauckas/DifferentialEquationsBase.jl?branch=master)
[![codecov.io](http://codecov.io/github/ChrisRackauckas/DiffEqBase.jl/coverage.svg?branch=master)](http://codecov.io/github/ChrisRackauckas/DiffEqBase.jl?branch=master)

DiffEqBase.jl is a component package in the DifferentialEquations ecosystem. It holds the
common types and utility functions which are shared by other component packages
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Expand Up @@ -28,7 +28,7 @@ build_script:
# Need to convert from shallow to complete for Pkg.clone to work
- IF EXIST .git\shallow (git fetch --unshallow)
- C:\projects\julia\bin\julia -e "versioninfo();
Pkg.clone(pwd(), \"DifferentialEquationsBase\"); Pkg.build(\"DifferentialEquationsBase\")"
Pkg.clone(pwd(), \"DiffEqBase\"); Pkg.build(\"DiffEqBase\")"

test_script:
- C:\projects\julia\bin\julia -e "Pkg.test(\"DifferentialEquationsBase\")"
- C:\projects\julia\bin\julia -e "Pkg.test(\"DiffEqBase\")"
2 changes: 1 addition & 1 deletion test/runtests.jl
@@ -1,4 +1,4 @@
using DifferentialEquationsBase, DifferentialEquations
using DiffEqBase, DifferentialEquations
using Base.Test

# write your own tests here
Expand Down

0 comments on commit f57d518

Please sign in to comment.