Skip to content

Commit 65180a0

Browse files
authored
bump version number (#77)
Check Documenter CI (failing on latest release)
1 parent b1ef6ea commit 65180a0

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

.github/workflows/Documenter.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,28 @@ jobs:
4646
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
4747
env:
4848
PYTHON: ""
49+
- name: Fix weird Conda.jl/PyCall.jl/SymPy.jl build error
50+
env:
51+
PYTHON: ""
52+
shell: julia --color=yes {0}
53+
run: |
54+
using Pkg
55+
Pkg.activate("docs")
56+
println("Try instantiating the docs environment")
57+
try
58+
Pkg.instantiate()
59+
println("Successfully instantiated the docs environment")
60+
catch e
61+
display(e)
62+
end
63+
println("Try building SymPy")
64+
try
65+
Pkg.build("SymPy")
66+
import SymPy
67+
println("Successfully built SymPy")
68+
catch e
69+
display(e)
70+
end
4971
- name: Build and deploy documentation
5072
env:
5173
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "RootedTrees"
22
uuid = "47965b36-3f3e-11e9-0dcf-4570dfd42a8c"
33
authors = ["Hendrik Ranocha <mail@ranocha.de> and contributors"]
4-
version = "2.10.2"
4+
version = "2.10.3"
55

66
[deps]
77
Latexify = "23fbe1c1-3f47-55db-b15f-69d7ec21a316"

0 commit comments

Comments
 (0)