Skip to content

Commit 5729a89

Browse files
authored
Merge pull request #119 from JuliaMath/teh/project
Switch to Project.toml
2 parents b5386a3 + 6dbb90c commit 5729a89

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

.travis.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@ os:
33
- linux
44
- osx
55
julia:
6-
- 0.7
6+
- 1.0
7+
- 1.1
78
- nightly
89
notifications:
910
email: false
10-
script:
11-
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
12-
- julia -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("FixedPointNumbers")'
13-
- julia -e 'using Pkg; Pkg.test("FixedPointNumbers"; coverage=true)'
11+
1412
after_success:
1513
# push coverage results to Codecov
1614
- julia -e 'using Pkg; cd(Pkg.dir("FixedPointNumbers")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

Project.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name = "FixedPointNumbers"
2+
uuid = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
3+
version = "0.6.0"
4+
5+
[compat]
6+
julia = "≥ 1.0"
7+
8+
[extras]
9+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
10+
11+
[targets]
12+
test = ["Test"]

REQUIRE

Lines changed: 0 additions & 1 deletion
This file was deleted.

appveyor.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
environment:
22
matrix:
3-
- julia_version: 0.7
4-
- julia_version: latest
3+
- julia_version: 1.0
4+
- julia_version: 1
5+
- julia_version: nightly
56

67
platform:
78
- x86 # 32-bit

0 commit comments

Comments
 (0)