Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Prepare python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/pip
Expand All @@ -61,22 +61,22 @@ jobs:
files: ./coverage.xml

mac:
runs-on: macos-15
runs-on: macos-14
strategy:
matrix:
python-version: ['3.13']

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Prepare python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/pip
Expand Down Expand Up @@ -104,15 +104,15 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Prepare python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~\AppData\Local\pip\Cache
Expand All @@ -137,15 +137,15 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Prepare python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/pip
Expand Down Expand Up @@ -181,15 +181,15 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Prepare python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Cache tox and cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/pip
Expand Down Expand Up @@ -227,15 +227,15 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Prepare python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/pip
Expand Down Expand Up @@ -263,15 +263,15 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Prepare python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/pip
Expand Down Expand Up @@ -299,15 +299,15 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Prepare python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/pip
Expand Down Expand Up @@ -335,15 +335,15 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Prepare python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/pip
Expand All @@ -367,15 +367,15 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Prepare python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/pip
Expand All @@ -400,15 +400,15 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Prepare python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/pip
Expand All @@ -430,15 +430,15 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Prepare python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Remove direct dependencies from setup.cfg
# Remove any "git+https"-based dependencies that are not supported
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Check out the repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Log in to Docker Hub
uses: docker/login-action@v3
Expand Down
Loading
Loading