Skip to content

Commit b7f573c

Browse files
committed
Update manifest
1 parent 7d21317 commit b7f573c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ matrix:
2727

2828
## uncomment the following lines to override the default test script
2929
script:
30-
- julia -e 'if VERSION < v"0.7.0-DEV.5183"; Pkg.clone(pwd()); else; import Pkg; Pkg.add(pwd()); end; Pkg.test("CharSetEncodings"; coverage=true)'
30+
- julia -e 'if VERSION < v"0.7.0-DEV.5183"; Pkg.clone("https://github.com/JuliaString/StrAPI.jl"); Pkg.clone(pwd()); else; import Pkg; Pkg.up(); end; Pkg.test("CharSetEncodings"; coverage=true)'
3131

3232
after_success:
3333
# push coverage results to Coveralls

Manifest.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
77
[[ModuleInterfaceTools]]
88
deps = ["Pkg", "StrTables", "Test"]
99
git-tree-sha1 = "ee0f69390a534143f1304bc120c03e891a68441f"
10-
repo-rev = "master"
11-
repo-url = "https://github.com/JuliaString/ModuleInterfaceTools.jl"
1210
uuid = "5cb8414e-7aab-5a03-a681-351269c074bf"
1311
version = "0.1.4"
1412

@@ -20,7 +18,7 @@ uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
2018

2119
[[StrAPI]]
2220
deps = ["ModuleInterfaceTools", "Pkg", "Random", "Test", "Unicode"]
23-
git-tree-sha1 = "c70bf7b2a4904e5fdace155d851e44f016bc4e6a"
21+
git-tree-sha1 = "66f59aafb4f2d83b1e66cc60ff40f70c5cf7b4fa"
2422
repo-rev = "master"
2523
repo-url = "https://github.com/JuliaString/StrAPI.jl"
2624
uuid = "69e7dfc3-c4d0-5e14-8d95-d6042a05b383"

appveyor.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,10 @@ build_script:
4242
- IF EXIST .git\shallow (git fetch --unshallow)
4343
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using InteractiveUtils, Pkg);
4444
versioninfo();
45-
if VERSION < v\"0.7.0-DEV.5183\"; Pkg.clone(pwd(), \"CharSetEncodings\");
46-
else; Pkg.add(pwd()); end"
45+
if VERSION < v\"0.7.0-DEV.5183\";
46+
Pkg.clone(\"https://github.com/JuliaString/StrAPI.jl\", \"StrAPI\");
47+
Pkg.clone(pwd(), \"CharSetEncodings\");
48+
else; Pkg.up(); end"
4749

4850
test_script:
4951
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using Pkg); Pkg.test(\"CharSetEncodings\")"

0 commit comments

Comments
 (0)