From 8630c27e0cfa8e06971807bafd6432f417f7ae2c Mon Sep 17 00:00:00 2001 From: Mashrfee Aryan Date: Thu, 30 Jul 2026 10:40:05 -0500 Subject: [PATCH] fix: specify dependency versions --- pyproject.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f52e4e0..d27b4c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,9 +3,9 @@ # and which third-party libraries must be installed with it. [project] name = "runongpu" -version = "0.1.0" +version = "1.0.2" description = "A CLI tool that runs GitHub projects on free cloud GPUs" -requires-python = ">=3.10" +requires-python = ">=3.12" readme = "README.md" # Runtime dependencies for the CLI. @@ -13,9 +13,9 @@ readme = "README.md" # rich: prints readable, colored terminal output # playwright: controls Chrome so RunOnGPU can automate Google Colab dependencies = [ - "typer", - "rich", - "playwright" + "playwright==1.61.0", + "rich==15.0.0", + "typer==0.26.8", ] # Exposes RunOnGPU as a terminal command. @@ -28,5 +28,5 @@ runongpu = "runongpu.cli:app" # setuptools packages the project so it can be installed locally during # development and later published as a real Python package. [build-system] -requires = ["setuptools"] +requires = ["setuptools>=68"] build-backend = "setuptools.build_meta" \ No newline at end of file