From 855b1a1a1d6fc5b18176ee5a5c6e07d5dfb582fe Mon Sep 17 00:00:00 2001 From: Ronny V Date: Tue, 9 Jan 2024 16:32:01 +0100 Subject: [PATCH 1/2] Fixed typo in CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e695ff..08fd69d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## Next Release (tbc) -## 0.6 (2024-01-09) +## 1.0 (2024-01-09) * Added support for Django 5.0 (#142) * Added support for Python 3.11 and 3.12 (#142) * Added support for Python 3.10 (#116) From 00700e62ac323d7481cd9d8993c5500e4b193855 Mon Sep 17 00:00:00 2001 From: Justin Mayer Date: Fri, 2 Feb 2024 13:10:45 +0100 Subject: [PATCH 2/2] Update `setup-python` GitHub CI action to v5 --- .github/workflows/CI.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 9829d49..c6e78c0 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -23,7 +23,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: pip @@ -35,14 +35,16 @@ jobs: - name: Install dependencies run: python -m pip install --upgrade codecov tox - - name: Run tox targets for ${{ matrix.python-version }} + - name: Run tox targets for Python ${{ matrix.python-version }} run: | ENV_PREFIX=$(tr -C -d "0-9" <<< "${{ matrix.python-version }}") TOXENV=$(tox --listenvs | grep "^py$ENV_PREFIX" | tr '\n' ',') tox - - name: Run lint + + - name: Run linters if: ${{ matrix.python-version == '3.12' }} run: | tox -e lint + - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 with: