Skip to content

Commit 4793323

Browse files
committed
update all deps to Julia 1.9+ versions
1 parent 0c87419 commit 4793323

File tree

2 files changed

+40
-19
lines changed

2 files changed

+40
-19
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 36 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,45 @@
11
name: CompatHelper
2-
32
on:
43
schedule:
5-
- cron: '00 * * * *'
6-
4+
- cron: 0 0 * * *
5+
workflow_dispatch:
6+
permissions:
7+
contents: write
8+
pull-requests: write
79
jobs:
810
CompatHelper:
9-
runs-on: ${{ matrix.os }}
10-
strategy:
11-
matrix:
12-
julia-version: [1]
13-
julia-arch: [x86]
14-
os: [ubuntu-latest]
11+
runs-on: ubuntu-latest
1512
steps:
16-
- uses: julia-actions/setup-julia@latest
13+
- name: Check if Julia is already available in the PATH
14+
id: julia_in_path
15+
run: which julia
16+
continue-on-error: true
17+
- name: Install Julia, but only if it is not already available in the PATH
18+
uses: julia-actions/setup-julia@v1
1719
with:
18-
version: ${{ matrix.julia-version }}
19-
- name: Pkg.add("CompatHelper")
20-
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
21-
- name: CompatHelper.main()
20+
version: '1'
21+
arch: ${{ runner.arch }}
22+
if: steps.julia_in_path.outcome != 'success'
23+
- name: "Add the General registry via Git"
24+
run: |
25+
import Pkg
26+
ENV["JULIA_PKG_SERVER"] = ""
27+
Pkg.Registry.add("General")
28+
shell: julia --color=yes {0}
29+
- name: "Install CompatHelper"
30+
run: |
31+
import Pkg
32+
name = "CompatHelper"
33+
uuid = "aa819f21-2bde-4658-8897-bab36330d9b7"
34+
version = "3"
35+
Pkg.add(; name, uuid, version)
36+
shell: julia --color=yes {0}
37+
- name: "Run CompatHelper"
38+
run: |
39+
import CompatHelper
40+
CompatHelper.main()
41+
shell: julia --color=yes {0}
2242
env:
2343
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24-
run: julia -e 'using CompatHelper; CompatHelper.main()'
44+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
45+
# COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }}

Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SignalDecomposition"
22
uuid = "11a47235-7b84-4c7c-b885-fc3e2a9cf955"
33
authors = ["Datseris <datseris.george@gmail.com>"]
4-
version = "1.0.4"
4+
version = "1.1.0"
55

66
[deps]
77
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
@@ -16,13 +16,13 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1616
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1717

1818
[compat]
19-
BandedMatrices = "0.15, 0.16, 0.17"
19+
BandedMatrices = "1"
2020
DelayEmbeddings = "2"
2121
FFTW = "1.2"
2222
LPVSpectral = "0.3"
2323
Neighborhood = "0.2"
24-
StaticArrays = "0.12, 1"
25-
julia = "1.4"
24+
StaticArrays = "1"
25+
julia = "1.9"
2626

2727
[extras]
2828
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"

0 commit comments

Comments
 (0)