Skip to content

Commit

Permalink
update catlab v0.12 and add julia 1.6 support (#43)
Browse files Browse the repository at this point in the history
Signed-off-by: Micah Halter <[email protected]>
  • Loading branch information
mehalter authored Apr 17, 2021
1 parent 6319d5e commit 772129c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: '1.5'
version: '1.6'
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
- uses: julia-actions/julia-processcoverage@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: "Set up Julia"
uses: julia-actions/setup-julia@latest
with:
version: '1.5'
version: '1.6'
- name: "Install system dependencies"
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
julia-version: ['1.0', '1.5']
julia-version: ['1.0', '1.6']
os: [ubuntu-latest]

steps:
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Petri"
uuid = "4259d249-1051-49fa-8328-3f8ab9391c33"
authors = ["Micah Halter <[email protected]>", "James Fairbanks <[email protected]>"]
version = "1.2.5"
version = "1.2.6"

[deps]
AutoHashEquals = "15f4f7f2-30c1-5605-9d31-71845cf9641f"
Expand All @@ -15,7 +15,7 @@ StochasticDiffEq = "789caeaf-c7a9-5a7d-9973-96adeb23e2a0"

[compat]
AutoHashEquals = "^0.2.0"
Catlab = "0.7.4,0.8,0.9,0.10,0.11"
Catlab = "0.7.4,0.8,0.9,0.10,0.11,0.12"
DiffEqBase = "^6"
DiffEqJump = "^6"
OrdinaryDiffEq = "^5"
Expand Down
6 changes: 3 additions & 3 deletions test/solvers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ end
prob = JumpProblem(sir,u0,(0.0,40.0),p)
sol = DiffEqJump.solve(prob,SSAStepper())
@test sum(sol[end]) == 1000
@test sol[end].S == 263
@test sol[end].I == 10
@test sol[end].R == 727
@test sol[end].S == 236
@test sol[end].I == 45
@test sol[end].R == 719
end
end

Expand Down

2 comments on commit 772129c

@mehalter
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/34575

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 v1.2.6 -m "<description of version>" 772129c02111f6b445da4e23de4fa9f3ad896902
git push origin v1.2.6

Please sign in to comment.