-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
Showing
4 changed files
with
30 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
*.jl.cov | ||
*.jl.*.cov | ||
*.jl.mem | ||
docs/build | ||
docs/site | ||
Manifest.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
language: julia | ||
os: | ||
- linux | ||
- linux | ||
julia: | ||
- 0.7 | ||
- 1.0 | ||
- nightly | ||
sudo: false | ||
- 1.0 | ||
- 1.3 | ||
- nightly | ||
notifications: | ||
email: false | ||
#script: | ||
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi | ||
# - julia -e 'Pkg.clone(pwd())' | ||
# - julia -e 'Pkg.test("Combinatorics", coverage=true)' | ||
after_success: | ||
- julia -e 'Pkg.add("Coverage"); cd(Pkg.dir("Combinatorics")); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(process_folder())' | ||
email: false | ||
codecov: true | ||
coveralls: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name = "Combinatorics" | ||
uuid = "861a8166-3701-5b0c-9a16-15d98fcdc6aa" | ||
version = "1.0.0" | ||
|
||
[deps] | ||
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45" | ||
|
||
[compat] | ||
Polynomials = "0.5, 0.6" | ||
julia = "1" | ||
|
||
[extras] | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[targets] | ||
test = ["LinearAlgebra", "Test"] |
4d6c504
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
4d6c504
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/6026
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via: