summaryrefslogtreecommitdiff
path: root/tox.ini
AgeCommit message (Collapse)Author
2026-01-14Bumped linter versions in requirements files and tox.ini.Jacob Walls
Follow-up to 64ac4385c75b12a4065055b3d8d60bd5e0e61f04.
2025-11-21Added GitHub Actions linter (zizmor).Jacob Walls
At the direction of the Security Team. Thanks Markus Holtermann, Jake Howard, and Natalia Bidart for reviews.
2025-10-17Refs #35844 -- Doc'd Python 3.14 compatibility.Mariusz Felisiak
2025-10-16Bumped minimum isort version to 7.0.0.Jacob Walls
Added ignores relating to https://github.com/PyCQA/isort/issues/2352.
2025-08-25Fixed #36485 -- Added lint-docs check in Tox and GitHub Actions.David Smith
The `check` docs target now runs spelling, black, and lint, so all current documentation quality checks can be run with a single command. Also documented the lint-docs check's availability and usage.
2025-01-20Fixed #36005 -- Dropped support for Python 3.10 and 3.11.Mariusz Felisiak
2024-10-09Refs #34900 -- Doc'd Python 3.13 compatibility.Mariusz Felisiak
2023-12-06Refs #34986 -- Added PyPy to tox.ini.Nick Pope
2023-11-19Refs #34118 -- Added Python 3.12 to classifiers and tox.ini.Mariusz Felisiak
2023-06-01Added local copy of Django to deps in tox.ini.Michael Howitz
This also bumps tox to 4.0.
2023-03-01Refs #34140 -- Added configurations to run blacken-docs linter and adjusted ↵Mariusz Felisiak
docs. This adds: - GitHub actions, - tox configuration, - pre-commit hook, and - makefile rules to run blacken-docs linter. Co-authored-by: David Smith <smithdc@gmail.com>
2023-01-25Corrected passenv value for tox 4.0.6+.Stephen
2023-01-18Fixed #34233 -- Dropped support for Python 3.8 and 3.9.Mariusz Felisiak
2022-10-26Refs #33173 -- Added Python 3.11 to classifiers and tox.ini.Mariusz Felisiak
2022-09-24Fixed #34046 -- Fixed pinning flake8 and isort versions in tox.ini.Michael Howitz
2022-02-07Refs #33476 -- Adjusted docs and config files for Black.Carlton Gibson
Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2021-10-05Refs #32074 -- Added Python 3.10 to classifiers and tox.ini.Mariusz Felisiak
2021-02-10Used allowlist_externals in tox.ini (again)Matthias Kestenholz
allowlist_externals is already used in this file. Refs #31670
2021-02-10Fixed #32355 -- Dropped support for Python 3.6 and 3.7Mariusz Felisiak
2020-10-26Refs #31670 -- Used allowlist_externals in tox.ini.David Smith
2020-10-13Refs #31040 -- Doc'd Python 3.9 compatibility.Mariusz Felisiak
2020-07-30Bumped minimum isort version to 5.1.0.David Smith
Fixed inner imports per isort 5. isort 5.0.0 to 5.1.0 was unstable.
2019-10-24Refs #29926 -- Added Python 3.8 to classifiers and tox.ini.Bastien Vallet
2019-10-09Fixed #30806 -- Prevented tox tests hanging on macOS.dustinlharrison
MacOS users may need to set OBJC_DISABLE_INITIALIZE_FORK_SAFETY=TRUE (#27086) to prevent tests from hanging. If set, also pass the environment variable to `tox`.
2019-04-18Fixed #30367 -- Changed "pip install" to "python -m pip install" in docs, ↵Ramiro Morales
comments and hints.
2019-01-30Fixed #30116 -- Dropped support for Python 3.5.Tim Graham
2018-06-28Refs #28814 -- Documented Python 3.7 compatibility.Asif Saifuddin Auvi
2017-10-06Refs #27857 -- Removed Python 3.4 from tox.ini.Tim Graham
2017-10-06Updated link to Tox documentation in tox.ini.Mads Jensen
2017-01-25Refs #23919 -- Removed misc Python 2/3 references.Tim Graham
2017-01-05Refs #27025 -- Added Python 3.6 to tox.ini.Andrii Soldatenko
2016-08-24Added environment variable support to tox configurationJosh Smeaton
PYTHONPATH is required for passing through test modules that don't already exist within the Django tests/ directory. DISPLAY is required for testing selenium on systems that use Xvfb. HOME is where the Vagrant djangobox stores geoip data, but it could be useful for other tox commands that require access to data outside of Django.
2016-07-20Fixed #22446 -- Added tox.ini to automate pull request checks.Tobias McNulty