From 9bb0341fd6f33ba15aa43529c998633480ad3147 Mon Sep 17 00:00:00 2001 From: Carlos Fuentes Date: Thu, 18 Dec 2025 18:14:14 +0000 Subject: [PATCH 1/2] Updating the stone version to 3.3.9 --- requirements.txt | 2 +- setup.py | 2 +- test/requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index bebcdc16..513c4c31 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ # Dependencies required for installation (keep in sync with setup.py) requests>=2.16.2 six >= 1.12.0 -stone>=2,<3.3.3 +stone>=2,<3.3.9 # Other dependencies for development ply pytest diff --git a/setup.py b/setup.py index 6c11c3d1..133719f3 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ install_reqs = [ 'requests>=2.16.2', 'six >= 1.12.0', - 'stone>=2,<3.3.3', + 'stone>=2,<3.3.9', ] setup_requires = [ diff --git a/test/requirements.txt b/test/requirements.txt index 9f263bd8..8328a1cc 100644 --- a/test/requirements.txt +++ b/test/requirements.txt @@ -2,4 +2,4 @@ pytest mock pytest-mock coverage -stone>=2,<3.3.3 +stone>=2,<3.3.9 From eb3df8d52e525095a5b0ca0108b90c83db721ac3 Mon Sep 17 00:00:00 2001 From: Carlos Fuentes Date: Thu, 18 Dec 2025 18:18:52 +0000 Subject: [PATCH 2/2] Adding max-parallel: 1 to avoid race conditions in Integration tests --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1aa2e48d..ad7192f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,6 +98,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: fail-fast: false + max-parallel: 1 matrix: os: [macos-15-intel, macos-latest, windows-latest, ubuntu-latest] python-version: ["3.9", "3.10", "3.11"]