From 01e8f8ba2cba7506b1462c1ba29366c5bd802a49 Mon Sep 17 00:00:00 2001 From: Brian Guarraci Date: Sat, 10 Feb 2024 17:46:14 +0000 Subject: [PATCH] bumpy github action to 3.11 --- .github/workflows/unittests.yml | 8 ++++---- setup.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 09a533c..c06a3e6 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -15,10 +15,10 @@ jobs: steps: - name: Checkout Code uses: actions/checkout@v2 - - name: Set up Python 3.8 + - name: Set up Python 3.11 uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.11 - name: Install dependencies run: | python -m pip install --upgrade pip @@ -40,10 +40,10 @@ jobs: uses: actions/checkout@v2 - name: Update packages run: sudo apt-get update - - name: Set up Python 3.8 + - name: Set up Python 3.11 uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.11 - name: Install Dependencies run: pip install -e ".[full]" - name: Run unittest diff --git a/setup.py b/setup.py index f990b33..71a0f22 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License" ], - install_requires=['numpy~=1.24.4'], + install_requires=['numpy~=1.26.4'], python_requires='<3.12,>=3.8', extras_require=extra_requires, include_package_data=True,