From b9c91d00380fc7aae2148f19f272d1520668d6b5 Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Thu, 12 Sep 2024 21:23:55 -0400 Subject: [PATCH] Set upper bounds on deps --- pyproject.toml | 4 ++-- test.pal | 10 ---------- 2 files changed, 2 insertions(+), 12 deletions(-) delete mode 100644 test.pal diff --git a/pyproject.toml b/pyproject.toml index 710d6fd10..e1b761712 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,9 +7,9 @@ description = "Auto-Editor: Effort free video editing!" readme = "README.md" license = { text = "Unlicense" } authors = [{ name = "WyattBlue", email = "wyattblue@auto-editor.com" }] -requires-python = ">=3.10" +requires-python = ">=3.10,<3.14" dependencies = [ - "numpy>=1.23.0", + "numpy>=1.23.0,<3", "pyav==13.0.*", "ae-ffmpeg==1.2.*", ] diff --git a/test.pal b/test.pal deleted file mode 100644 index d6c24a838..000000000 --- a/test.pal +++ /dev/null @@ -1,10 +0,0 @@ - -(define (func2 b) - c - b -) -(define (func1 a) - (func2 a) -) - -(func1 "hot")