Skip to content

Commit

Permalink
v1.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bartTC committed Dec 15, 2023
1 parent 12b7dba commit a24ce18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[metadata]
name = django-wakawaka
version = 1.3
version = 1.4
description = A simple Django based wiki system.
long_description = file: README.rst, CHANGELOG.rst
author = Martin Mahner
author_email = [email protected]
url = https://github.com/bartTC/django-wakawaka
keywords = django, pastebin
keywords = django, wiki, wikipedia, documentation
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Expand All @@ -27,5 +27,4 @@ python_requires = >=3.8
packages = find:
include_package_data = True
zip_safe = False
install_requires =
django>=3.2
install_requires = django>=3.2
2 changes: 1 addition & 1 deletion wakawaka/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def page(
return render(request, template_name, template_context)


def edit(
def edit( # noqa: C901 PLR0912 PLR0913 - Too complex, too many arguments, too many branches
request: HttpRequest,
slug: str,
rev_id: int | None = None,
Expand Down

0 comments on commit a24ce18

Please sign in to comment.