From 8357213c0bdba8add9a929f30990d2fa749e1af7 Mon Sep 17 00:00:00 2001 From: Hugo Rodger-Brown Date: Thu, 16 Nov 2023 11:51:40 +0000 Subject: [PATCH] Update classifiers (remove Django 3.2) --- README.md => README | 2 +- pyproject.toml | 18 ++++++++---------- tox.ini | 5 ++++- 3 files changed, 13 insertions(+), 12 deletions(-) rename README.md => README (97%) diff --git a/README.md b/README similarity index 97% rename from README.md rename to README index 0ba0af9..0f6b49a 100644 --- a/README.md +++ b/README @@ -3,7 +3,7 @@ Django app for managing / tracking Django model anonymisation. ## Status -This is currently used internally only, and has not been publisehd to +This is currently used internally only, and has not been published to PyPI - use with caution. ## Background diff --git a/pyproject.toml b/pyproject.toml index a68bd88..4090a5d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,21 +1,17 @@ [tool.poetry] name = "django-anonymise" -version = "0.1.0" +version = "0.2.0" description = "Django app used to manage production data anonymisation." license = "MIT" authors = ["YunoJuno "] maintainers = ["YunoJuno "] -readme = "README.md" +readme = "README" homepage = "https://github.com/yunojuno/django-anonymiser" repository = "https://github.com/yunojuno/django-anonymiser" documentation = "https://github.com/yunojuno/django-anonymiser" classifiers = [ - "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", - "Framework :: Django :: 3.2", - "Framework :: Django :: 4.0", - "Framework :: Django :: 4.1", "Framework :: Django :: 4.2", "Framework :: Django :: 5.0", "License :: OSI Approved :: MIT License", @@ -33,16 +29,18 @@ django = "^3.2 || ^4.0 || ^5.0" psycopg2-binary = { version = "*", optional = true } [tool.poetry.group.dev.dependencies] -dj-database-url = "*" black = "*" -coverage = "*" -freezegun = "*" mypy = "*" pre-commit = "*" +ruff = "*" + +[tool.poetry.group.test.dependencies] +coverage = "*" +dj-database-url = "*" +freezegun = "*" pytest = "*" pytest-cov = "*" pytest-django = "*" -ruff = "*" tox = "*" [tool.poetry.extras] diff --git a/tox.ini b/tox.ini index ce78d28..1500331 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,10 @@ isolated_build = True envlist = fmt, lint, mypy, django-checks, - py{311,12}-django{42,50,main} + ; https://docs.djangoproject.com/en/5.0/releases/ + django42-py{311} + django50-py{311,312} + djangomain-py{311,312} [testenv] deps =