Skip to content

Commit 95e1f39

Browse files
committed
Update Project.toml
1 parent d620fa3 commit 95e1f39

4 files changed

Lines changed: 13 additions & 19 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ matrix:
2020
# uncomment the following lines to override the default test script
2121
script:
2222
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
23-
- julia -e 'mit = "ModuleInterfaceTools"; mh3 = "MurmurHash3"; loc = "https://github.com/JuliaString"; sb="StrBase"; sl="StrLiterals"; la = ("Format", "StrAPI", "CharSetEncodings", "ChrBase"); if VERSION < v"0.7.0-DEV.5183"; cln = Pkg.clone; cln("$loc/$mit.jl"); cln("$loc/$mh3.jl"); for n in la; Pkg.add(n); end; cln("$loc/$sb.jl"); cln("$loc/$sl.jl"); cln(pwd()); else; using Pkg; cln(a)=Pkg.add("$loc/$a.jl.git"); cln(mit); cln(mh3); for n in la; cln(n); end; cln(sb); cln(sl); end; Pkg.test("StrFormat"; coverage=true)'
23+
- julia -e 'if VERSION < v"0.7.0-DEV.5183"; Pkg.clone(pwd()); else; using Pkg; Pkg.up(); end; Pkg.test("StrFormat"; coverage=true)'
2424
after_success:
2525
# push coverage results to Coveralls
2626
- julia -e 'cd(Pkg.dir("StrFormat")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

Project.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,11 @@ Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
1010
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1111
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
1212

13-
Format = "1fa38f19-a742-5d3f-a2b9-30dd87b9d5f8" # 9wb580eyjv4k3iej
14-
StrLiterals = "627f7b36-cfa1-4420-8f93-de9d4fe56cdc" # 8462oq09ek07knos
13+
ModuleInterfaceTools = "5cb8414e-7aab-5a03-a681-351269c074bf"
14+
StrTables = "9700d1a9-a7c8-5760-9816-a99fda30bb8f" # ekt5t6nt8g0cqhjb
15+
Format = "1fa38f19-a742-5d3f-a2b9-30dd87b9d5f8" # 9wb580eyjv4k3iej
16+
MurmurHash3 = "b10b62ed-fbae-5ea5-b934-abaf0477b71d"
17+
StrAPI = "69e7dfc3-c4d0-5e14-8d95-d6042a05b383"
18+
ChrBase = "c13fa7b1-fb91-5a40-8b3c-3aad7fd30002"
19+
StrBase = "e79e7a6a-7bb1-5a4d-9d64-da657b06f53a"
20+
StrLiterals = "68059f60-971f-57ff-a2d0-18e7de9ccc84" # 8462oq09ek07knos

REQUIRE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
julia 0.6
22
Format
3-
ChrBase
4-
#StrLiterals
3+
StrLiterals

appveyor.yml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,9 @@ build_script:
4141
# Need to convert from shallow to complete for Pkg.clone to work
4242
- IF EXIST .git\shallow (git fetch --unshallow)
4343
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using InteractiveUtils);
44-
versioninfo(); mit = \"ModuleInterfaceTools\"; mh3 = \"MurmurHash3\";
45-
loc = \"https://github.com/JuliaString\"; sb = \"StrBase\"; sl = \"StrLiterals\";
46-
la = (\"Format\", \"StrAPI\", \"CharSetEncodings\", \"ChrBase\");
47-
if VERSION < v\"0.7.0-DEV.5183\";
48-
cln(a) = Pkg.clone(\"$loc/$a.jl.git\", a);
49-
cln(mit); cln(mh3);
50-
for n in la; Pkg.add(n); end;
51-
cln(sb); cln(sl);
52-
Pkg.clone(pwd(), \"StrFormat\");
53-
else;
54-
using Pkg;
55-
cln(a) = Pkg.add(\"$loc/$a.jl.git\");
56-
cln(mit); cln(mh3); for n in la; cln(n); end; cln(sb); cln(sl);
57-
end"
44+
versioninfo();
45+
if VERSION < v\"0.7.0-DEV.5183\"; Pkg.clone(pwd(), \"StrFormat\");
46+
else; using Pkg; Pkg.up(); end"
5847

5948
test_script:
6049
- C:\projects\julia\bin\julia -e "Pkg.test(\"StrFormat\")"

0 commit comments

Comments
 (0)