Skip to content

Commit d522400

Browse files
authored
Julia v1.12 support (#64)
1 parent dbe318c commit d522400

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
version:
2323
- 'lts'
2424
- '1'
25+
- 'pre'
2526
os:
2627
- ubuntu-latest
2728
- macOS-latest

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Infinities"
22
uuid = "e1ba4f0e-776d-440f-acd9-e1d2e9742647"
33
authors = ["Sheehan Olver <[email protected]>"]
4-
version = "0.1.11"
4+
version = "0.1.12"
55

66
[compat]
77
Aqua = "0.8"

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ using Aqua
308308

309309
@test Base.literal_pow(^, -∞, Val(0)) (-∞)^0 1.0
310310
@test Base.literal_pow(^, -∞, Val(1)) (-∞)^1 -
311-
@test Base.literal_pow(^, -∞, Val(-1)) (-∞)^(-1) 0.0
311+
@test Base.literal_pow(^, -∞, Val(-1)) (-∞)^(-1) (VERSION < v"1.12-" ? 0.0 : -0.0)
312312

313313
@test Base.literal_pow(^, ComplexInfinity(0.1), Val(0)) ComplexInfinity(0.1)^0 1.0+0.0im
314314
@test Base.literal_pow(^, ComplexInfinity(0.1), Val(1)) (ComplexInfinity(0.1))^1 ComplexInfinity(0.1)

0 commit comments

Comments
 (0)