Skip to content

Commit 9b75c5b

Browse files
committed
fixed precompilation for Julia 1.10
1 parent 2da4220 commit 9b75c5b

File tree

4 files changed

+52
-47
lines changed

4 files changed

+52
-47
lines changed

.appveyor.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
environment:
2+
matrix:
3+
- julia_version: 1
4+
- julia_version: 1.6
5+
- julia_version: 1.10
6+
- julia_version: nightly
7+
8+
platform:
9+
- x86 # 32-bit
10+
- x64 # 64-bit
11+
12+
## uncomment the following lines to allow failures on nightly julia
13+
## (tests will run but not make your overall status red)
14+
matrix:
15+
allow_failures:
16+
- julia_version: nightly
17+
18+
branches:
19+
only:
20+
- master
21+
- /release-.*/
22+
23+
notifications:
24+
- provider: Email
25+
on_build_success: false
26+
on_build_failure: false
27+
on_build_status_changed: false
28+
29+
install:
30+
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
31+
32+
build_script:
33+
- echo "%JL_BUILD_SCRIPT%"
34+
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
35+
36+
test_script:
37+
- echo "%JL_TEST_SCRIPT%"
38+
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
39+
40+
# # Uncomment to support code coverage upload. Should only be enabled for packages
41+
# # which would have coverage gaps without running on Windows
42+
# on_success:
43+
# - echo "%JL_CODECOV_SCRIPT%"
44+
# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"

Project.toml

+6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
name = "ReduceLinAlg"
22
uuid = "bfcbc1eb-9170-5dc4-a833-47b2e27cecb4"
3+
authors = ["Michael Reed"]
4+
version = "0.1.1"
35

46
[deps]
57
Reduce = "93e0c654-6965-5f22-aba9-9c1ae6b3c259"
68
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
79

10+
[compat]
11+
julia = "1"
12+
Reduce = "1.2.13"
13+
814
[extras]
915
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1016

appveyor.yml

-47
This file was deleted.

src/ReduceLinAlg.jl

+2
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,6 @@ function __init__()
130130
load_package(:linalg)
131131
end
132132

133+
Reduce.stop()
134+
133135
end # module

0 commit comments

Comments
 (0)