Skip to content

Commit cb40b66

Browse files
authored
Merge pull request #253 from JuliaImages/teh/compat
Bump [compat]
2 parents 5f29c2d + 5507c68 commit cb40b66

File tree

5 files changed

+150
-140
lines changed

5 files changed

+150
-140
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 23 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,32 @@
11
name: CompatHelper
2-
32
on:
43
schedule:
5-
- cron: '00 00 * * *'
4+
- cron: 0 0 * * *
65
workflow_dispatch:
7-
86
jobs:
97
CompatHelper:
10-
runs-on: ${{ matrix.os }}
11-
strategy:
12-
matrix:
13-
julia-version: [1.2.0]
14-
julia-arch: [x86]
15-
os: [ubuntu-latest]
8+
runs-on: ubuntu-latest
169
steps:
17-
- name: Pkg.add("CompatHelper")
18-
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
19-
- name: CompatHelper.main()
10+
- name: "Add the General registry via Git"
11+
run: |
12+
import Pkg
13+
ENV["JULIA_PKG_SERVER"] = ""
14+
Pkg.Registry.add("General")
15+
shell: julia --color=yes {0}
16+
- name: "Install CompatHelper"
17+
run: |
18+
import Pkg
19+
name = "CompatHelper"
20+
uuid = "aa819f21-2bde-4658-8897-bab36330d9b7"
21+
version = "3"
22+
Pkg.add(; name, uuid, version)
23+
shell: julia --color=yes {0}
24+
- name: "Run CompatHelper"
25+
run: |
26+
import CompatHelper
27+
CompatHelper.main()
28+
shell: julia --color=yes {0}
2029
env:
2130
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22-
COMPATHELPER_PRIV: ${{ secrets.TAGBOT }}
23-
run: julia -e 'using CompatHelper; CompatHelper.main()'
31+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
32+
# COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
test/images
2+
Manifest.toml

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ImageView"
22
uuid = "86fae568-95e7-573e-a6b2-d8a6b900c9ef"
33
author = ["Tim Holy <[email protected]"]
4-
version = "0.10.13"
4+
version = "0.10.14"
55

66
[deps]
77
AxisArrays = "39de3d68-74b9-583c-8d2d-e117c070f3a9"
@@ -19,8 +19,8 @@ Cairo = "0.6, 0.7, 0.8, 1"
1919
Graphics = "0.2, 0.3, 0.4, 1"
2020
Gtk = "0.16, 0.17, 0.18, 1"
2121
GtkReactive = "0.5.1, 0.6, 0.7, 1"
22-
Images = "0.15, 0.16, 0.17, 0.18, 0.19, 0.20, 0.21, 0.22, 0.23"
23-
RoundingIntegers = "0.2"
22+
Images = "0.15, 0.16, 0.17, 0.18, 0.19, 0.20, 0.21, 0.22, 0.23, 0.24"
23+
RoundingIntegers = "0.2, 1"
2424
StatsBase = "0.28, 0.29, 0.30, 0.31, 0.32, 0.33"
2525
julia = "1"
2626

0 commit comments

Comments
 (0)