Skip to content

Commit

Permalink
Merge pull request #290 from lino/python312
Browse files Browse the repository at this point in the history
Add support for Python 3.12, Drop support for Django <4, Drop Support for Python 3.7, 3.8
  • Loading branch information
lino committed Jan 27, 2024
2 parents afcf972 + 27ed9a1 commit ef5bbfb
Show file tree
Hide file tree
Showing 10 changed files with 1,032 additions and 159 deletions.
40 changes: 0 additions & 40 deletions .github/workflows/release.yml

This file was deleted.

90 changes: 54 additions & 36 deletions .github/workflows/test.yml
Expand Up @@ -10,67 +10,85 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.8']
django-version: ['2.2', '3.2', '4.0']
python-version: ['3.9', '3.10', '3.11', '3.12']
django-version: ['4.0', '4.1', '4.2', '5.0']
include:
# Tox configuration for documentation environment
- python-version: '3.7'
- python-version: '3.9'
django-version: 'docs'
# Tox configuration for QA environment
- python-version: '3.7'
- python-version: '3.9'
django-version: 'qa'
# Django main
- python-version: '3.8'
django-version: 'main'
experimental: true
- python-version: '3.9'
django-version: 'main'
experimental: true
- python-version: '3.10'
django-version: 'main'
experimental: true
- python-version: '3.11'
django-version: 'main'
experimental: true
- python-version: '3.12'
django-version: 'main'
experimental: true
exclude:
# Exclude Django 4.0 for Python 3.7 as it is not supported
- python-version: '3.7'
- python-version: '3.11'
django-version: '4.0'

- python-version: '3.12'
django-version: '4.0'
- python-version: '3.12'
django-version: '4.1'
- python-version: '3.9'
django-version: '5.0'
steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
- uses: actions/checkout@v3
- name: Set up PDM for Python ${{ matrix.python-version }}
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}

- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache
uses: actions/cache@v2
with:
path: ${{ steps.pip-cache.outputs.dir }}
key:
${{ matrix.python-version }}-v1-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ matrix.python-version }}-v1-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox tox-gh-actions
pdm sync -d -G dev
- name: Tox tests
- name: Run pytest
run: |
tox -v
pdm run -v pytest --cov-report term-missing --cov-report xml --cov=docopt
env:
DJANGO: ${{ matrix.django-version }}

- name: Upload coverage
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v2
with:
name: Python ${{ matrix.python-version }}

- name: Build wheels and sdist
run: |
pdm build
- name: Save artifacts
uses: actions/upload-artifact@v2
with:
# These are pure-python, so we don't need to worry about platform
name: wheels
# name: Python ${{ matrix.python-version }}
path: |
dist/*.whl
dist/*.tar.gz
release:
needs:
- build
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
with:
name: wheels
path: dist

- name: Upload packages to Jazzband
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: jazzband
password: ${{ secrets.JAZZBAND_RELEASE_KEY }}
repository_url: https://jazzband.co/projects/django-recurrence/upload
8 changes: 8 additions & 0 deletions CHANGES.rst
Expand Up @@ -2,6 +2,14 @@
Changes
=======


1.12
----
* Drop official support for Django versions 2.2, 3.2.
* Drop official support for Python versions 3.7, 3.8;
* Added support for DEFAULT_AUTO_FIELD
* Minor fixes

1.11.1 (2021-01-25)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/installation.rst
Expand Up @@ -27,9 +27,9 @@ Then, make sure ``recurrence`` is in your ``INSTALLED_APPS`` setting:
Supported Django and Python versions
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Currently, django-recurrence supports Python 3.6, 3.7, 3.8, 3.9, 3.10, and 3.11.
Currently, django-recurrence supports Python 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, and 3.12.

django-recurrence is currently tested with django 2.2, 3.2, and 4.0
django-recurrence is currently tested with django 2.2, 3.2, 4.0, 4.1, 4.2, and 5.0

Set up internationalization
---------------------------
Expand Down

0 comments on commit ef5bbfb

Please sign in to comment.