Skip to content

Commit 4d6c504

Browse files
authored
Add a Project file, remove REQUIRE, declare version 1.0 (#88)
Changes: * Raise the minimum Julia version to 1.0 * Simplify the Travis coverage submission setup * Test on Julia 1.0 (LTS), 1.3 (stable), and nightly * Add a Project.toml file * Set the package version to 1.0.0 * Remove the now-unused REQUIRE file * Add a standard .gitignore file
1 parent 38fc5c4 commit 4d6c504

File tree

4 files changed

+30
-14
lines changed

4 files changed

+30
-14
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.jl.cov
2+
*.jl.*.cov
3+
*.jl.mem
4+
docs/build
5+
docs/site
6+
Manifest.toml

.travis.yml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
language: julia
22
os:
3-
- linux
3+
- linux
44
julia:
5-
- 0.7
6-
- 1.0
7-
- nightly
8-
sudo: false
5+
- 1.0
6+
- 1.3
7+
- nightly
98
notifications:
10-
email: false
11-
#script:
12-
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
13-
# - julia -e 'Pkg.clone(pwd())'
14-
# - julia -e 'Pkg.test("Combinatorics", coverage=true)'
15-
after_success:
16-
- julia -e 'Pkg.add("Coverage"); cd(Pkg.dir("Combinatorics")); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(process_folder())'
9+
email: false
10+
codecov: true
11+
coveralls: true

Project.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name = "Combinatorics"
2+
uuid = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
3+
version = "1.0.0"
4+
5+
[deps]
6+
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
7+
8+
[compat]
9+
Polynomials = "0.5, 0.6"
10+
julia = "1"
11+
12+
[extras]
13+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
14+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
15+
16+
[targets]
17+
test = ["LinearAlgebra", "Test"]

REQUIRE

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)