Skip to content

Commit

Permalink
require StrideArraysCore 0.3.9 and don't check deps_compat on Julia dev
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Jun 2, 2022
1 parent c460e71 commit 3e8dc71
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ LoopVectorization = "0.12.115"
Octavian = "0.3"
SLEEFPirates = "0.6.13"
Static = "0.3, 0.4, 0.6"
StrideArraysCore = "0.3"
StrideArraysCore = "0.3.9"
VectorizationBase = "0.21"
VectorizedRNG = "0.2.8"
julia = "1.6"
Expand Down
4 changes: 3 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ InteractiveUtils.versioninfo(stdout; verbose = true)
const START_TIME = time()

@time @testset "StrideArrays.jl" begin
@time Aqua.test_all(StrideArrays, ambiguities = false, project_toml_formatting = false)
@test isempty(Test.detect_unbound_args(StrideArrays))

@time Aqua.test_all(StrideArrays, ambiguities = false, project_toml_formatting = false, deps_compat = (VERSION <= v"1.8" || VERSION.prerelease[1] != "DEV"))
# Currently, there is one method ambiguity:
# - map(f::F, A::AbstractStrideArray, args::Vararg{Any, K}) where {F, K} in StrideArrays at StrideArrays/src/miscellaneous.jl:22
# - map(f, a1::AbstractArray, a2::StaticArrays.StaticArray, as::AbstractArray...) in StaticArrays at StaticArrays/0bweZ/src/mapreduce.jl:33
Expand Down

2 comments on commit 3e8dc71

@chriselrod
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/61549

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 the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.18 -m "<description of version>" 3e8dc71d85c4c6df40ea53fff521151c373d16dd
git push origin v0.1.18

Please sign in to comment.