Skip to content

Commit

Permalink
0.6.1pre: Fixed docs and test configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
mbi committed Dec 13, 2023
1 parent 3be2755 commit 20119d4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Version History
===============

Version 0.6.1 (unreleased)
--------------------------
* Fixed docs and test configuration


Version 0.6.0
-------------
* Only Django versions 4.2 or above are now supported
Expand Down
2 changes: 1 addition & 1 deletion captcha/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 6, 0)
VERSION = (0, 6, 1)


def get_version():
Expand Down
2 changes: 1 addition & 1 deletion docs/advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ And then have a ``custom_field.html`` template::


Context
~~~~~~~
-------

The following context variables are passed to the three "individual" templates:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ def run_tests(self):
zip_safe=False,
install_requires=install_requires,
extras_require=EXTRAS_REQUIRE,
tests_require=["tox"],
tests_require=["tox~=4.11.4"],
cmdclass={"test": Tox},
)
7 changes: 5 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ commands = python -Wd manage.py test captcha --settings jinja2_settings
[testenv:gettext]
basepython = python3
changedir = captcha/locale/
whitelist_externals =
allowlist_externals =
msgfmt

commands =
Expand Down Expand Up @@ -84,7 +84,10 @@ commands=
flake8 {toxinidir}/captcha

[testenv:docs]
deps = sphinx
deps =
sphinx
sphinx-book-theme

changedir = docs
commands=
sphinx-build -b html . _build/html

0 comments on commit 20119d4

Please sign in to comment.