Skip to content

Commit

Permalink
Project.toml (#37)
Browse files Browse the repository at this point in the history
* Replace REQUIRE with Project.toml

* Add version

* Version 0.4 since bumping minimal Julia version

* Update .yml

* Remove Julia 1.0 compatibility

* Fix test
  • Loading branch information
dpsanders authored Jul 16, 2019
1 parent 7a8bc02 commit 06349c7
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ os:
- osx

julia:
- 0.7
- 1.0
- 1.1
- 1.2
- nightly

matrix:
Expand Down
17 changes: 17 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name = "IntervalContractors"
uuid = "15111844-de3b-5229-b4ba-526f2f385dc9"
version = "0.4.0"

[deps]
IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253"

[compat]
IntervalArithmetic = "≥ 0.16"
julia = "≥ 1.1"

[extras]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Documenter", "Test"]
2 changes: 0 additions & 2 deletions REQUIRE

This file was deleted.

4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
environment:
matrix:
- julia_version: 0.7
- julia_version: 1
- julia_version: 1.1
- julia_version: 1.2
- julia_version: nightly

platform:
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ using Test
y = -1..1
z = 2..10

@test_broken mul_rev(z, x, y) == (2..10, 2..5, 0.4..1.0) # fix once extended_div is corrected
@test mul_rev(z, x, y) == (2..10, 2..5, 0.4..1.0)
end
end

2 comments on commit 06349c7

@dpsanders
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

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/2063

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:

git tag -a v0.4.0 -m "<description of version>" 06349c7b2a109a34f99393bf1eceea847a0459de
git push origin v0.4.0

Please sign in to comment.