We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddd49d0 commit 7d9c228Copy full SHA for 7d9c228
.github/workflows/CompatHelper.yml
@@ -0,0 +1,15 @@
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
+ run: julia -e 'using CompatHelper; CompatHelper.main()'
Project.toml
@@ -10,8 +10,9 @@ RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
[compat]
-NamedArrays = "≥ 0.9.2"
-julia = "≥ 1.0.0"
+julia = "1"
+NamedArrays = "0.9"
+RecipesBase = "1"
16
17
[extras]
18
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
0 commit comments