From 8e90bdb5d26a7bbb86b5de694585c1ef671b2245 Mon Sep 17 00:00:00 2001 From: "Mauricio A. Rovira Galvez" <8482308+marovira@users.noreply.github.com> Date: Sat, 23 Mar 2024 17:40:57 -0700 Subject: [PATCH] [brief] Adds a new sub-type for pyro to handle CI. [detailed] - It's almost identical to dev, but it skips the pre-commit hooks. --- pyproject.toml | 7 +++++++ requirements/ci.txt | 11 +++++++++++ 2 files changed, 18 insertions(+) create mode 100644 requirements/ci.txt diff --git a/pyproject.toml b/pyproject.toml index cf84f4e..74ccb84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,13 @@ dev = [ "types-Pillow==10.2.0.20240311" ] +ci = [ + "mypy==1.8.0", + "ruff==0.3.4", + "pytest==8.1.1", + "types-Pillow==10.2.0.20240311" +] + [tool.setuptools_scm] [tool.setuptools.packages.find] diff --git a/requirements/ci.txt b/requirements/ci.txt new file mode 100644 index 0000000..f4808e3 --- /dev/null +++ b/requirements/ci.txt @@ -0,0 +1,11 @@ +# Generated via tools/generate_requirements.py and pre-commit hook. +# Do not edit this file; modify pyproject.toml instead. +mypy==1.8.0 +opencv-python==4.9.0.80 +pytest==8.1.1 +ruff==0.3.4 +tensorboard==2.16.2 +torch==2.2.1 +torchvision==0.17.1 +tqdm==4.66.2 +types-Pillow==10.2.0.20240311