From e6c8cf49c259eae7f88da30d79c0b62a82353f6a Mon Sep 17 00:00:00 2001 From: Alex Bezzubov Date: Sat, 11 May 2024 20:15:33 +0200 Subject: [PATCH] ci: fix python on macos * bump cffi * add Go --- .github/workflows/pyTest.yml | 4 ++++ python/requirements.txt | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pyTest.yml b/.github/workflows/pyTest.yml index 0c9c7db..83b5e6d 100644 --- a/.github/workflows/pyTest.yml +++ b/.github/workflows/pyTest.yml @@ -12,6 +12,10 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: 1.19.x - name: Checkout code uses: actions/checkout@v4 - name: Install dependencies diff --git a/python/requirements.txt b/python/requirements.txt index 6d61476..63bfab0 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,2 +1,2 @@ -cffi==1.14.1 +cffi==1.16.0 pycparser==2.20