From cd58610de16fd6458311d27841bd8b1b357c52a5 Mon Sep 17 00:00:00 2001 From: Antonio Paolillo Date: Thu, 5 Feb 2026 10:27:40 +0100 Subject: [PATCH 1/2] dependencies: Relax lower bounds, bump dev tools Relax dependency constraints in pyproject.toml to allow newer versions of black, click, and isort. Update requirements.txt to track recent releases of formatting, linting, testing, and typing tools (black, isort, pylint, pytest, ruff, mypy), keeping upper bounds explicit for reproducibility. Signed-off-by: Antonio Paolillo --- pyproject.toml | 6 +++--- requirements.txt | 16 ++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e3c2cc1..ea480cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,9 +13,9 @@ classifiers = [ "Operating System :: OS Independent", ] dependencies = [ - "black<=25.1.0", - "click<=8.2.1", - "isort<=6.0.1", + "black>=26", + "click>=8", + "isort>=7", ] [project.urls] diff --git a/requirements.txt b/requirements.txt index 32ec3b5..9f61de4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,12 +1,12 @@ -black<=25.1.0 -black[d]<=25.1.0 -black[jupyter]<=25.1.0 +black<=26.1.0 +black[d]<=26.1.0 +black[jupyter]<=26.1.0 docopt<=0.6.2 flake8<=7.3.0 -isort<=6.0.1 +isort<=7.0.0 pycodestyle<=2.14.0 -pylint<=3.3.7 -pytest<=8.4.2 -ruff<=0.13.0 -mypy<=1.18.1 +pylint<=4.0.4 +pytest<=9.0.2 +ruff<=0.15.0 +mypy<=1.19.1 types-click<=7.1.8 From 18470d8d968721b425ddd45990d47c9651137b9f Mon Sep 17 00:00:00 2001 From: Antonio Paolillo Date: Thu, 5 Feb 2026 10:35:38 +0100 Subject: [PATCH 2/2] format Signed-off-by: Antonio Paolillo --- src/pythainer/builders/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pythainer/builders/__init__.py b/src/pythainer/builders/__init__.py index b7963fd..cf5c923 100644 --- a/src/pythainer/builders/__init__.py +++ b/src/pythainer/builders/__init__.py @@ -6,6 +6,7 @@ handling commands like package installation, environment variable setting, and user management, tailored specifically for Docker environments. """ + import os import tempfile from pathlib import Path