From ed998c6f9c89f946ee3ca93251b61f06de53f850 Mon Sep 17 00:00:00 2001 From: Satya Mishra Date: Mon, 3 Jul 2023 23:18:03 +0000 Subject: [PATCH] Update python and django versions --- .github/workflows/test.yml | 5 ++++- pyproject.toml | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 143caa1..cb93e81 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,10 +6,13 @@ jobs: strategy: matrix: python-version: ['3.8', '3.9', '3.10', '3.11'] - django-version: ['3.2', '4.0', '4.1'] + django-version: ['3.2', '4.1', '4.2'] include: - python-version: 3.7 django-version: 3.2 + exclude: + - python-version: 3.11 + django-version: 3.2 fail-fast: false steps: diff --git a/pyproject.toml b/pyproject.toml index 66bcc54..b1aec31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,14 +19,15 @@ classifiers=[ "Framework :: Django :: 3.2", "Framework :: Django :: 4.0", "Framework :: Django :: 4.1", + "Framework :: Django :: 4.2", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ] dynamic = ["version", "dependencies"]