Skip to content

Commit

Permalink
release: v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zzacharo committed Apr 2, 2024
1 parent 1899b3f commit ea0b24b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 26 deletions.
21 changes: 5 additions & 16 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,34 +29,23 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10, 3.11, 3.12]
requirements-level: [pypi]
python-version: [3.9, 3.12]
env:
EXTRAS: tests
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Generate dependencies
run: |
pip install wheel requirements-builder
requirements-builder -e "$EXTRAS" --level=${{ matrix.requirements-level }} setup.py > .${{ matrix.requirements-level }}-${{ matrix.python-version }}-requirements.txt
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('.${{ matrix.requirements-level }}-${{ matrix.python-version }}-requirements.txt') }}
cache: pip
cache-dependency-path: setup.cfg

- name: Install dependencies
run: |
pip install -r .${{ matrix.requirements-level }}-${{ matrix.python-version }}-requirements.txt
pip install .[$EXTRAS]
pip install ".[$EXTRAS]"
pip freeze
- name: Run tests
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
Changes
=======

Version 1.3.1 (released 2024-04-02)

- setup: unpin importlib-metadata
- tests: update python matrix

Version 1.3.0 (released 2024-03-05)

- installation: bump celery to support python 3.11
Expand Down
2 changes: 1 addition & 1 deletion invenio_celery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@ def sum(x, y):

from .ext import InvenioCelery

__version__ = "1.3.0"
__version__ = "1.3.1"

__all__ = ("__version__", "InvenioCelery")
9 changes: 0 additions & 9 deletions requirements-devel.txt

This file was deleted.

0 comments on commit ea0b24b

Please sign in to comment.