Skip to content

Commit

Permalink
Merge pull request #69 from dabapps/django-4.1
Browse files Browse the repository at this point in the history
Add Django 4.1rc1 to test matrix, remove Django 2.2
  • Loading branch information
j4mie authored Aug 10, 2022
2 parents aa947ed + fb6b7ed commit cbef4fc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,16 @@ jobs:
strategy:
matrix:
python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
django: ["2.2", "3.2", "4.0"]
django: ["3.2", "4.0", "4.1"]
exclude:
- python: "3.6"
django: "4.0"
- python: "3.7"
django: "4.0"
- python: "3.10"
django: "2.2"
- python: "3.6"
django: "4.1"
- python: "3.7"
django: "4.1"

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- Add support for Django 4.1
- Drop support for Django 2.2

## [2.0.0] - 2022-07-19

### Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ django-readers

**A lightweight function-oriented toolkit for better organisation of business logic and efficient selection and projection of data in Django projects.**

Tested against Django 2.2, 3.2 and 4.0 on Python 3.6, 3.7, 3.8, 3.9 and 3.10
Tested against Django 3.2, 4.0 and 4.1 on Python 3.6, 3.7, 3.8, 3.9 and 3.10

![Build Status](https://github.com/dabapps/django-readers/workflows/CI/badge.svg?branch=main)
[![pypi release](https://img.shields.io/pypi/v/django-readers.svg)](https://pypi.python.org/pypi/django-readers)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def get_package_data(package):
package_data=get_package_data(package),
python_requires=">=3.6",
install_requires=[
"Django>=2.2",
"Django>=3.2",
],
project_urls={
"Changelog": "https://github.com/dabapps/django-readers/releases",
Expand Down

0 comments on commit cbef4fc

Please sign in to comment.