From 699d4c3a565b6c418e020e2b05273f4b39cec9e2 Mon Sep 17 00:00:00 2001 From: liadomide Date: Thu, 4 Apr 2024 09:17:42 +0300 Subject: [PATCH] EBR-40 upgrade setup --- .github/workflows/tests.yml | 10 +++++----- .github/workflows/wheels.yml | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ebcadfe..6591cb9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,25 +6,25 @@ env: COVERAGE: 1 jobs: - run_tests_py_3_10: + run_tests: name: Run tests on ${{ matrix.os }} with python ${{ matrix.python-version }} runs-on: ${{ matrix.os }} strategy: matrix: - os: [ ubuntu-20.04, windows-2019, macOS-11 ] + os: [ ubuntu-latest, windows-latest, macOS-12 ] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pytest pytest-cov + pip install setuptools pytest pytest-cov - name: Install project run: | diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 06542c9..14f716d 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -13,13 +13,13 @@ jobs: os: [ubuntu-20.04, windows-2019, macOS-11] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Used to host cibuildwheel - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v5 - name: Install cibuildwheel - run: python -m pip install cibuildwheel==2.11.3 + run: python -m pip install setuptools cibuildwheel==2.11.3 - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse @@ -36,7 +36,7 @@ jobs: name: Build source distribution runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build sdist run: pipx run build --sdist