Skip to content

Commit

Permalink
Excluded tests from package, bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
Bart van der Schoor committed Mar 19, 2024
1 parent 4b47a3a commit 60c305e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ include License
include README.rst
recursive-include mail_editor/templates *
recursive-include bin *
recursive-include testapp *
global-exclude __pycache__
global-exclude *.py[co]
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mail_editor"
version = "0.3.6"
version = "0.3.7"
description = "A Django package for email template editing"
authors = [
{name = "Maykin Media", email = "[email protected]"}
Expand Down Expand Up @@ -68,6 +68,7 @@ release = [

[tool.setuptools.packages.find]
include = ["mail_editor*"]
exclude = ["tests", "testapp"]
namespaces = false

[tool.isort]
Expand All @@ -82,7 +83,7 @@ testpaths = ["tests"]
DJANGO_SETTINGS_MODULE = "testapp.settings"

[tool.bumpversion]
current_version = "0.3.6"
current_version = "0.3.7"
files = [
{filename = "pyproject.toml"},
{filename = "README.rst"},
Expand Down
2 changes: 1 addition & 1 deletion testapp/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"default": {
# Memory resident database, for easy testing.
"ENGINE": "django.db.backends.sqlite3",
"NAME": os.path.join(DJANGO_PROJECT_DIR, "mail_editor.db"),
"NAME": os.path.join(DJANGO_PROJECT_DIR, "..", "mail_editor.db"),
}
}

Expand Down

0 comments on commit 60c305e

Please sign in to comment.