From c2895a1c629ad9719893dd7a454013078f474e9e Mon Sep 17 00:00:00 2001 From: Gonzalo Vidal <35148159+Gonza10V@users.noreply.github.com> Date: Mon, 13 Jul 2026 22:42:02 -0600 Subject: [PATCH] Pin Opentrons to OT-2 simulator compatible releases --- docs/guide/installation.rst | 4 +++- pyproject.toml | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/guide/installation.rst b/docs/guide/installation.rst index 29ed540..76fb109 100644 --- a/docs/guide/installation.rst +++ b/docs/guide/installation.rst @@ -27,9 +27,11 @@ App can detect the robot. Dependencies ------------ +PUDU requires Python 3.10 for compatibility with the OT-2 simulator. + PUDU depends on: -* ``opentrons >= 8.4.1`` +* ``opentrons >= 8.4.1, < 9`` * ``xlsxwriter >= 3.2.5`` For building this documentation locally:: diff --git a/pyproject.toml b/pyproject.toml index 265de6d..4388d76 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "pudupy" version = "1.0.0b9" description = "Protocol Unified Design Unit" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.10,<3.11" license = {file = "LICENSE"} keywords = ["pudu", "lab", "automation", "opentrons", "synthetic biology"] authors = [ @@ -25,7 +25,7 @@ classifiers = [ ] dependencies = [ - "opentrons>=8.4.1", + "opentrons>=8.4.1,<9", "xlsxwriter>=3.2.5", ]