summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorJean Abou-Samra <jean@abou-samra.fr>2023-02-23 13:44:22 +0100
committerGitHub <noreply@github.com>2023-02-23 13:44:22 +0100
commite589fee754a76e9600dcb42baaeb3372d9e163d7 (patch)
tree34a4a1bef36b0d1b65b8925e9751a9ee3bdc7281 /CHANGES
parent1e85f7c2ad2edfeae7f0c566163931324f64f949 (diff)
downloadpygments-git-e589fee754a76e9600dcb42baaeb3372d9e163d7.tar.gz
Replace Makefile with tox (#2331)
Porting notes: - tox handles Python environments automatically. Remove a bit of PYTHONPATH manipulation (that was using Python 2 code which always failed!) - No `clean` target: `git clean -xdf` should fit the bill. - No `reindent` target: the `reindent.py` script it was using does not exist (anymore?). - No equivalent of tox-test-coverage, which was an artifact of the past, using nose. Instead, the test-coverage target only is ported, which uses pytest, and works.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index b76c9e2c..f4ace2fe 100644
--- a/CHANGES
+++ b/CHANGES
@@ -35,6 +35,10 @@ Version 2.15.0
- Move project metadata to ``pyproject.toml``, remove ``setup.py``
and ``setup.cfg`` (#2342)
+- The top-level ``Makefile`` has been removed. Instead, all shortcuts
+ for developing are now defined and run through tox. The ``doc`` folder
+ still contains a ``Makefile`` as an alternative to ``tox -e doc``.
+
Version 2.14.0
--------------
(released January 1st, 2023)