Skip to content

Commit e3c7f58

Browse files
committed
nix: R59 has been released at some point.. *derp*
1 parent 45d8aac commit e3c7f58

File tree

3 files changed

+28
-26
lines changed

3 files changed

+28
-26
lines changed

.github/workflows/linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
vs: ["57", "58", "latest"]
10+
vs: ["58", "59", "latest"]
1111
py: ["39", "310"]
1212
arch: ["i686", "x86_64"]
1313
steps:
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: macos-latest
2626
strategy:
2727
matrix:
28-
vs: ["57", "58", "latest"]
28+
vs: ["58", "59", "latest"]
2929
py: ["39", "310"]
3030
steps:
3131
- uses: actions/checkout@v2.4.0
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: windows-latest
4343
strategy:
4444
matrix:
45-
vs: ["57", "58"]
45+
vs: ["58", "59"]
4646
arch: ["x64", "x86"]
4747
include:
4848
- vs: "57"

flake.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,22 @@
1515
flake = false;
1616
};
1717

18-
# VS R57
19-
inputs.vs_57_vs = {
20-
url = "github:vapoursynth/vapoursynth/R57";
18+
# VS R58
19+
inputs.vs_58_vs = {
20+
url = "github:vapoursynth/vapoursynth/R58";
2121
flake = false;
2222
};
23-
inputs.vs_57_zimg = {
23+
inputs.vs_58_zimg = {
2424
url = "github:sekrit-twc/zimg/v3.0";
2525
flake = false;
2626
};
27-
inputs.vs_58_vs = {
28-
url = "github:vapoursynth/vapoursynth/R58";
27+
28+
# VS R59
29+
inputs.vs_59_vs = {
30+
url = "github:vapoursynth/vapoursynth/R59";
2931
flake = false;
3032
};
31-
inputs.vs_58_zimg = {
33+
inputs.vs_59_zimg = {
3234
url = "github:sekrit-twc/zimg/v3.0";
3335
flake = false;
3436
};
@@ -44,13 +46,13 @@
4446
# Supported versions
4547
versions = {
4648
python = [ "39" "310" ];
47-
vapoursynth = [ 57 58 "latest" ];
49+
vapoursynth = [ 58 59 "latest" ];
4850
};
4951

5052
# Version-Numbers for versions like "latest"
5153
aliases = {
5254
vapoursynth = {
53-
latest = 59;
55+
latest = 60;
5456
};
5557
};
5658
in

0 commit comments

Comments
 (0)