Skip to content

Commit

Permalink
Some updates (#26)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
racinmat authored Sep 14, 2020
1 parent 4191ce4 commit 963d249
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 6 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CompatHelper
on:
schedule:
- cron: '00 00 * * *'
workflow_dispatch:
jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }} # optional
run: julia -e 'using CompatHelper; CompatHelper.main()'
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.jl.cov
*.jl.*.cov
*.jl.mem
Manifest.toml
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ os:
- osx

julia:
- 0.7
- 1.0
- 1.5
- nightly

#matrix:
Expand Down
22 changes: 22 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name = "TreeView"
uuid = "39424ebd-4cf3-5550-a685-96706a953f40"
version = "0.4.0"

[deps]
CommonSubexpressions = "bbf7d656-a473-5ed7-a52c-81e309532950"
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
TikzGraphs = "b4f28e30-c73f-5eaf-a395-8a9db949a742"

[compat]
CommonSubexpressions = "0.2, 0.3"
LightGraphs = "0.13.1, 0.14, 1.0, 1.1, 1.2, 1.3"
MacroTools = "0.4, 0.5"
TikzGraphs = "1.0, 1.1"
julia = "^0.7, ^1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
5 changes: 0 additions & 5 deletions REQUIRE

This file was deleted.

2 comments on commit 963d249

@dpsanders
Copy link
Collaborator

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/21371

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 v0.4.0 -m "<description of version>" 963d2491dc8c892888b8b20877c8f28e45c4832e
git push origin v0.4.0

Please sign in to comment.