-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Django 4.2, 5.0 to classifiers (#34)
Add Python 3.12 and Django 4.2 and 5.0 to the build matrix and classifiers. Bump version to v6.0
- Loading branch information
1 parent
c97e5e7
commit 5d227d0
Showing
13 changed files
with
89 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
*.pyc | ||
*.egg-info | ||
.coverage | ||
.tox | ||
static | ||
*.egg-info | ||
*.pyc | ||
dist | ||
poetry.lock | ||
static | ||
test.db |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
__version__ = "5.0.0" | ||
|
||
default_app_config = "appmail.apps.AppmailConfig" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "django-appmail" | ||
version = "5.0.0" | ||
version = "6.0" | ||
description = "Django app for managing localised email templates." | ||
authors = ["YunoJuno <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -12,35 +12,31 @@ classifiers = [ | |
"Framework :: Django :: 3.2", | ||
"Framework :: Django :: 4.0", | ||
"Framework :: Django :: 4.1", | ||
"Framework :: Django :: 4.2", | ||
"Framework :: Django :: 5.0", | ||
"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", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
packages = [{ include = "appmail" }] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
django = "^3.2 || ^4.0" | ||
python = "^3.9" | ||
django = "^3.2 || ^4.0 || ^5.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
black = "*" | ||
coverage = "*" | ||
flake8 = "*" | ||
flake8-bandit = "*" | ||
flake8-blind-except = "*" | ||
flake8-docstrings = "*" | ||
flake8-logging-format = "*" | ||
flake8-print = "*" | ||
freezegun = "*" | ||
isort = "*" | ||
mypy = "*" | ||
pre-commit = "*" | ||
pytest = "*" | ||
pytest-cov = "*" | ||
pytest-django = "*" | ||
ruff = "*" | ||
tox = "*" | ||
|
||
[build-system] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters