From 56fdca52ed574865af1eb620a6b3528a8b5c8377 Mon Sep 17 00:00:00 2001 From: Paulo Amaral Date: Mon, 6 Nov 2023 17:20:58 +0000 Subject: [PATCH] Drop support for Python < 3.10 and update CHANGELOG --- CHANGELOG | 5 +++++ pyproject.toml | 4 +--- tox.ini | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 36fecdf..6360aa2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. +## [3.0.0] - 2023-02-17 + +- Drop support for Python < 3.10 +- Drop support for Pydantic < 2 + ## [0.10.0] - 2023-02-17 - Improve admin list view to include date filters and value search [#8] diff --git a/pyproject.toml b/pyproject.toml index ea9d948..4475e8b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-csp-plus" -version = "0.10.0" +version = "3.0.0" description = "CSP tracking and violation report endpoint." license = "MIT" authors = ["YunoJuno "] @@ -19,8 +19,6 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", ] diff --git a/tox.ini b/tox.ini index f032acb..94b0745 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] isolated_build = True -envlist = fmt, lint, mypy, checks, py{3.8,3.9,3.10,3.11}-django{32,41,42,main} +envlist = fmt, lint, mypy, checks, py{3.10,3.11}-django{32,41,42,main} [testenv] deps =