From dc2b1f8347f0ffa132f7e85d5cc20d206e1d6b97 Mon Sep 17 00:00:00 2001 From: alpharush <0xalpharush@protonmail.com> Date: Thu, 11 Jan 2024 13:00:37 -0600 Subject: [PATCH 1/2] fix(ci): guard brownie on Py3.10,3.11 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17e6c43..db09cfc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,8 +33,8 @@ jobs: # Explore foundry support in windows - os: windows-2022 type: foundry - # brownie does not install correctly with Python 3.12 - - python: 3.12 + # brownie does not install correctly + - python: [3.10, 3.11, 3.12] type: brownie # TODO: review failure executing npx on Windows - os: windows-2022 From 8db9bdcfc3f266c2cd6b057709c740cbc829e6ea Mon Sep 17 00:00:00 2001 From: alpharush <0xalpharush@protonmail.com> Date: Thu, 11 Jan 2024 13:03:18 -0600 Subject: [PATCH 2/2] fix matrix --- .github/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db09cfc..d37e441 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,8 +33,14 @@ jobs: # Explore foundry support in windows - os: windows-2022 type: foundry - # brownie does not install correctly - - python: [3.10, 3.11, 3.12] + # brownie does not install correctly with Python 3.10 + - python: 3.10 + type: brownie + # brownie does not install correctly with Python 3.11 + - python: 3.11 + type: brownie + # brownie does not install correctly with Python 3.12 + - python: 3.12 type: brownie # TODO: review failure executing npx on Windows - os: windows-2022