Skip to content

Commit 17ac8a2

Browse files
committed
Drop support for Django 3.2.
1 parent 74bd0d6 commit 17ac8a2

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

.github/workflows/tests_and_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
strategy:
109109
matrix:
110110
python-version: [ 3.9, '3.10', '3.11', '3.12']
111-
django-version: [ 32, 42, 50, 51, 52 ]
111+
django-version: [ 42, 50, 51, 52 ]
112112
opensearch-version: [ 10, 20 ]
113113
exclude:
114114
- python-version: 3.9
@@ -139,7 +139,7 @@ jobs:
139139
run: tox -e py-django${{ matrix.django-version }}-opensearch${{ matrix.opensearch-version }}
140140

141141
- name: Upload coverage to Codecov
142-
if: matrix.python-version == 3.12 && matrix.django-version == 50
142+
if: matrix.python-version == 3.12 && matrix.django-version == 52
143143
uses: codecov/codecov-action@v1
144144
with:
145145
file: ./coverage.xml

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Django Opensearch DSL
55
[![Documentation Status](https://readthedocs.org/projects/django-opensearch-dsl/badge/?version=latest)](https://django-opensearch-dsl.readthedocs.io/en/latest/?badge=latest)
66
![Tests](https://github.com/Codoc-os/django-opensearch-dsl/workflows/Tests/badge.svg)
77
[![Python 3.9+](https://img.shields.io/badge/Python-3.9+-brightgreen.svg)](#)
8-
[![Django 3.2+](https://img.shields.io/badge/Django-3.2+-brightgreen.svg)](#)
8+
[![Django 4.2+](https://img.shields.io/badge/Django-4.2+-brightgreen.svg)](#)
99
[![OpenSearch 1.3+, 2.7+](https://img.shields.io/badge/OpenSearch-1.3+-brightgreen.svg)](#)
1010
[![License Apache 2](https://img.shields.io/badge/license-Apache%202-brightgreen.svg)](https://github.com/Codoc-os/django-opensearch-dsl/blob/master/LICENSE)
1111
[![codecov](https://codecov.io/gh/Codoc-os/django-opensearch-dsl/branch/master/graph/badge.svg)](https://codecov.io/gh/Codoc-os/django-opensearch-dsl)

docs/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
### 0.7.0 (2025-XX-XX)
44

55
* Confirm support for Django 5.1 and 5.2.
6+
* Drop support for Django 3.2.
67

78
### 0.6.2 (2024-04-23)
89

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
django>=2.1
1+
django>=4.2
22
opensearch-py>=2.2.0
33
python-dateutil~=2.8.2

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
########################
44
[tox:tox]
55
distshare = {homedir}/.tox/distshare
6-
envlist = py{39,310,311,312}-django{32,42,50,51,52}-opensearch{10,20}
6+
envlist = py{39,310,311,312}-django{42,50,51,52}-opensearch{10,20}
77
skipsdist = true
88
skip_missing_interpreters = true
99
indexserver =
@@ -18,7 +18,6 @@ setenv =
1818
deps =
1919
-rrequirements.txt
2020
-rrequirements_dev.txt
21-
django32: django>=3.2.0,<3.3.0
2221
django42: django>=4.2.0,<4.3.0
2322
django50: django>=5.0.0,<5.1.0
2423
django51: django>=5.1.0,<5.2.0

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
'Programming Language :: Python :: 3.11',
1414
'Programming Language :: Python :: 3.12',
1515
'Framework :: Django',
16-
'Framework :: Django :: 3.2',
1716
'Framework :: Django :: 4.2',
1817
'Framework :: Django :: 5.0',
1918
'Framework :: Django :: 5.1',

0 commit comments

Comments
 (0)