Skip to content

Commit 963d249

Browse files
authored
Some updates (#26)
* updated dependencies for Julia 1 and newer * adde compathelper * added compat * added more julias to test on * fixed project toml * added test extras * removed 1.1 to 1.4 testing * removed 0.7 testing
1 parent 4191ce4 commit 963d249

File tree

5 files changed

+40
-6
lines changed

5 files changed

+40
-6
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CompatHelper
2+
on:
3+
schedule:
4+
- cron: '00 00 * * *'
5+
workflow_dispatch:
6+
jobs:
7+
CompatHelper:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Pkg.add("CompatHelper")
11+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+
- name: CompatHelper.main()
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }} # optional
16+
run: julia -e 'using CompatHelper; CompatHelper.main()'

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.jl.cov
22
*.jl.*.cov
33
*.jl.mem
4+
Manifest.toml

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ os:
66
- osx
77

88
julia:
9-
- 0.7
109
- 1.0
10+
- 1.5
1111
- nightly
1212

1313
#matrix:

Project.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name = "TreeView"
2+
uuid = "39424ebd-4cf3-5550-a685-96706a953f40"
3+
version = "0.4.0"
4+
5+
[deps]
6+
CommonSubexpressions = "bbf7d656-a473-5ed7-a52c-81e309532950"
7+
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
8+
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
9+
TikzGraphs = "b4f28e30-c73f-5eaf-a395-8a9db949a742"
10+
11+
[compat]
12+
CommonSubexpressions = "0.2, 0.3"
13+
LightGraphs = "0.13.1, 0.14, 1.0, 1.1, 1.2, 1.3"
14+
MacroTools = "0.4, 0.5"
15+
TikzGraphs = "1.0, 1.1"
16+
julia = "^0.7, ^1"
17+
18+
[extras]
19+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
20+
21+
[targets]
22+
test = ["Test"]

REQUIRE

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)