Skip to content

Commit 1c9a7d8

Browse files
committed
Modernize license, Travis and readme
1 parent da9fee4 commit 1c9a7d8

File tree

3 files changed

+19
-25
lines changed

3 files changed

+19
-25
lines changed

.travis.yml

Lines changed: 11 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,15 @@
1-
language: cpp
2-
compiler:
3-
- clang
4-
notifications:
5-
email: false
6-
env:
7-
- JULIAVERSION="juliareleases"
8-
- JULIAVERSION="julianightlies"
9-
before_install:
10-
- sudo add-apt-repository ppa:staticfloat/julia-deps -y
11-
- sudo add-apt-repository ppa:staticfloat/${JULIAVERSION} -y
12-
- sudo apt-get update -qq -y
13-
- sudo apt-get install libgmp10 libpcre3-dev julia -y
14-
- git config --global user.name "Travis User"
15-
- git config --global user.email "[email protected]"
16-
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
1+
language: julia
2+
os:
3+
- linux
4+
julia:
5+
- 0.4
6+
- nightly
7+
sudo: false
8+
email: false
179
script:
18-
- julia -e 'Pkg.init(); Pkg.clone(pwd())'
10+
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
11+
- julia -e 'Pkg.clone(pwd())'
1912
- julia -e 'Pkg.test("Combinatorics", coverage=true)'
2013
after_success:
21-
- julia -e 'cd(Pkg.dir("Combinatorics")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
14+
- julia -e 'Pkg.add("Coverage"); cd(Pkg.dir("Combinatorics")); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(process_folder())'
2215

LICENSE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
Combinatorics.jl is licensed under the MIT License:
22

3-
> Copyright (c) 2013-2014: Alessandro Andrioni, Jiahao Chen and other
3+
> Copyright (c) 2013-2015: Alessandro Andrioni, Jiahao Chen and other
44
> contributors.
5-
>
5+
>
66
> Permission is hereby granted, free of charge, to any person obtaining
77
> a copy of this software and associated documentation files (the
88
> "Software"), to deal in the Software without restriction, including
99
> without limitation the rights to use, copy, modify, merge, publish,
1010
> distribute, sublicense, and/or sell copies of the Software, and to
1111
> permit persons to whom the Software is furnished to do so, subject to
1212
> the following conditions:
13-
>
13+
>
1414
> The above copyright notice and this permission notice shall be
1515
> included in all copies or substantial portions of the Software.
16-
>
16+
>
1717
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1818
> EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1919
> MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Combinatorics
22

3-
[![Combinatorics](http://pkg.julialang.org/badges/Combinatorics_release.svg)](http://pkg.julialang.org/?pkg=Combinatorics&ver=release)
4-
[![Combinatorics](http://pkg.julialang.org/badges/Combinatorics_nightly.svg)](http://pkg.julialang.org/?pkg=Combinatorics&ver=nightly)
3+
[![Combinatorics](http://pkg.julialang.org/badges/Combinatorics_0.3.svg)](http://pkg.julialang.org/?pkg=Combinatorics&ver=0.3)
4+
[![Combinatorics](http://pkg.julialang.org/badges/Combinatorics_0.4.svg)](http://pkg.julialang.org/?pkg=Combinatorics&ver=0.4)
55
[![Build Status](https://travis-ci.org/jiahao/Combinatorics.jl.svg?branch=master)](https://travis-ci.org/jiahao/Combinatorics.jl)
6-
[![Coverage Status](https://img.shields.io/coveralls/jiahao/Combinatorics.jl.svg)](https://coveralls.io/r/jiahao/Combinatorics.jl)
6+
[![Coverage Status](https://coveralls.io/repos/jiahao/Combinatorics.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/jiahao/Combinatorics.jl?branch=master)
7+
[![codecov.io](https://codecov.io/github/jiahao/Combinatorics.jl/coverage.svg?branch=master)](https://codecov.io/github/jiahao/Combinatorics.jl?branch=master)
78

89
A combinatorics library for Julia, focusing mostly (as of now) on enumerative
910
combinatorics and permutations. As overflows are expected even for low values,

0 commit comments

Comments
 (0)