Skip to content

Commit 731ad00

Browse files
authored
fix: downgrade julia dependencies to 1.10 (#428)
* fix: downgrade julia dependencies to 1.10 * bunp CI * bump version to 0.15.1 * chore: update HarmonicSteadyState source URL and version to 0.2.1
1 parent 20ebaf3 commit 731ad00

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

.github/workflows/Documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions/checkout@v4
3535
- uses: julia-actions/setup-julia@v2
3636
with:
37-
version: '1'
37+
version: 'lts'
3838
- uses: julia-actions/cache@v2
3939
- uses: julia-actions/julia-buildpkg@v1
4040
- uses: julia-actions/julia-docdeploy@v1

.github/workflows/Tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
fail-fast: false
3030
matrix:
3131
version:
32-
# - 'pre'
33-
# - 'lts'
32+
- 'pre'
33+
- 'lts'
3434
- '1'
3535
os:
3636
- ubuntu-latest

Project.toml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "HarmonicBalance"
22
uuid = "e13b9ff6-59c3-11ec-14b1-f3d2cc6c135e"
33
authors = ["Orjan Ameye <[email protected]>", "Jan Kosata <[email protected]>", "Javier del Pino <[email protected]>"]
4-
version = "0.15.0"
4+
version = "0.15.1"
55

66
[deps]
77
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
@@ -16,6 +16,9 @@ Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
1616
[weakdeps]
1717
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
1818

19+
[sources]
20+
HarmonicSteadyState = {url = "https://github.com/QuantumEngineeredSystems/HarmonicSteadyState.jl", rev = "lts-proper"}
21+
1922
[extensions]
2023
ModelingToolkitExt = "ModelingToolkit"
2124

@@ -24,17 +27,17 @@ Aqua = "0.8.11"
2427
DocStringExtensions = "0.9.4"
2528
Documenter = "1.4"
2629
ExplicitImports = "1.6"
27-
HarmonicSteadyState = "0.2.0"
30+
HarmonicSteadyState = "0.2.1"
2831
JET = "0.9.18"
2932
ModelingToolkit = "9.60"
3033
PrecompileTools = "1.2"
3134
QuestBase = "0.3.0"
32-
Random = "1.11.0"
35+
Random = "1.10"
3336
Reexport = "1.2.2"
3437
SymbolicUtils = "3.25"
3538
Symbolics = "~6.34.0"
36-
Test = "1.11.0"
37-
julia = "1.11.0"
39+
Test = "1.10"
40+
julia = "1.10"
3841

3942
[extras]
4043
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

test/code_quality.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ end
1313
@test check_no_stale_explicit_imports(HarmonicBalance) == nothing
1414
@test check_all_explicit_imports_via_owners(HarmonicBalance) == nothing
1515
Aqua.test_ambiguities([HarmonicBalance])
16-
Aqua.test_all(HarmonicBalance;)
16+
Aqua.test_all(HarmonicBalance; persistent_tasks=false)
1717
for mod in [ModelingToolkitExt]
1818
@test check_no_stale_explicit_imports(mod) == nothing
1919
@test check_all_explicit_imports_via_owners(mod) == nothing

0 commit comments

Comments
 (0)