Skip to content

Commit a44165f

Browse files
committed
Lower bound to julia 1.4 and tag version 0.2
1 parent 3e3f2db commit a44165f

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Documentation: https://github.com/JuliaCI/Appveyor.jl
22
environment:
33
matrix:
4-
- julia_version: 1.0
4+
- julia_version: 1.4
55
- julia_version: 1.5
66
- julia_version: nightly
77
platform:

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ language: julia
33
notifications:
44
email: false
55
julia:
6-
- 1.0
6+
- 1.4
77
- 1.5
88
- nightly
99
os:

Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PeriodicGraphs"
22
uuid = "18c5b727-b240-4874-878a-f2e242435bab"
33
authors = ["Lionel Zoubritzky [email protected]"]
4-
version = "0.1.3"
4+
version = "0.2.0"
55

66
[deps]
77
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
@@ -11,7 +11,7 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1111
[compat]
1212
LightGraphs = "1.3"
1313
StaticArrays = "0.12"
14-
julia = "1"
14+
julia = "1.4"
1515

1616
[extras]
1717
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

src/precompile.jl

+4
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ function _precompile_()
4444
@assert Base.precompile(Tuple{typeof(swap_axes!),PeriodicGraph{i},Vector{Int}})
4545
@assert Base.precompile(Tuple{typeof(swap_axes!),PeriodicGraph{i},NTuple{i,Int}})
4646
@assert Base.precompile(Tuple{typeof(vertex_permutation),PeriodicGraph{i},Vector{Any}})
47+
48+
for j in 1:3
49+
@assert Base.precompile(Tuple{typeof(PeriodicGraphs.change_dimension),Type{PeriodicGraph{i}},PeriodicGraph{j}})
50+
end
4751
end
4852
end
4953

0 commit comments

Comments
 (0)