From 22633273208795118d02d9844d2f815696f2f19f Mon Sep 17 00:00:00 2001 From: Youngjoon Lee <5462944+youngjoon-lee@users.noreply.github.com> Date: Fri, 12 Jan 2024 19:27:09 +0900 Subject: [PATCH] Use Python 3.12 and install setuptools (#48) --- .github/workflows/ci.yml | 2 +- requirements.txt | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 880c269..77c6d41 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: uses: actions/setup-python@v5 with: # Semantic version range syntax or exact version of a Python version - python-version: '3.11' + python-version: '3.x' - name: Install dependencies run: pip install -r requirements.txt - name: Run tests diff --git a/requirements.txt b/requirements.txt index 9f987b6..de2bd75 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,7 @@ -blspy==1.0.16 +blspy==2.0.2 cffi==1.16.0 cryptography==41.0.7 -numpy==1.26.2 +numpy==1.26.3 pycparser==2.21 -scipy==1.10.1 +scipy==1.11.4 +setuptools==69.0.3