Skip to content

Commit

Permalink
EBR-40 upgrade setup
Browse files Browse the repository at this point in the history
  • Loading branch information
liadomide committed Apr 4, 2024
1 parent 3cef6b2 commit 699d4c3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 699d4c3

Please sign in to comment.