Compare commits

..

3 Commits

Author SHA1 Message Date
Aidan Gauland 85f6e8abda
Run GH Workflow monthly 2023-11-19 08:58:41 +13:00
Aidan Gauland 9246452834
Add GH Workflow
GitHub Workflow to ensure all plugins build.
2023-11-19 08:58:41 +13:00
Aidan Gauland 8f28d94d65 Fix vsgan poetry dependency
After a recent poetry update in nixpkgs, we need to depend upon poetry-core instead.
2023-11-19 08:05:20 +13:00
3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,8 @@
name: Test
on:
pull_request:
schedule:
- cron: "0 0 1 * *"
jobs:
build:
runs-on: ubuntu-latest

View File

@ -95,7 +95,7 @@ in
# pkgs.vapoursynthPlugins.rekt
# pkgs.vapoursynthPlugins.vardefunc
# pkgs.vapoursynthPlugins.vsTAAmbk
# pkgs.vapoursynthPlugins.vsgan
pkgs.vapoursynthPlugins.vsgan
pkgs.vapoursynthPlugins.vsutil
])
];

View File

@ -3,7 +3,7 @@
, fetchFromGitHub
, vapoursynth
, numpy
, poetry
, poetry-core
, pytorch
}:
@ -22,7 +22,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
numpy
poetry
poetry-core
pytorch
];