Skip to content

Commit

Permalink
Update classifiers (remove Django 3.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugorodgerbrown committed Nov 16, 2023
1 parent 57fb648 commit 8357213
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md → README
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 8 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
maintainers = ["YunoJuno <[email protected]>"]
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",
Expand All @@ -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]
Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 8357213

Please sign in to comment.